mirror of https://git.jolheiser.com/dotnix.git
15 lines
283 B
Nix
15 lines
283 B
Nix
|
{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";
|
||
|
};
|
||
|
}
|