dotnix/apps/nogui/exa.nix

15 lines
283 B
Nix
Raw Normal View History

{lib, ...}: {
programs.exa = {
enable = true;
# These don't affect nushell currently
# git = true;
# icons = true;
};
programs.nushell.shellAliases = {
exa = "exa --git --icons";
ls = "exa";
ll = lib.mkForce "exa -al";
lt = "exa --tree";
};
}