blob: dee7e118fb70e3261d33d4455c64bbac5da80b6c (
plain) (
tree)
|
|
{ ... }: {
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting ""
'';
shellAliases = {
l =
"eza --tree --level=2 --time-style=long-iso --group-directories-first --icons";
ll = "l -l";
lh = "ll";
la = "ll -a";
ld = "eza -ld";
};
shellAbbrs = { ncg = "nix-collect-garbage -d"; };
};
}
|