13 lines
269 B
Nix
13 lines
269 B
Nix
{ ... }: {
|
|
programs.fish = {
|
|
enable = true;
|
|
interactiveShellInit = "set -g -x GPG_TTY (tty)";
|
|
shellAliases = {
|
|
cat = "bat";
|
|
ls = "eza";
|
|
cp = "cp --reflink=auto --sparse=always";
|
|
nix-fish = "nix-shell --command fish";
|
|
};
|
|
};
|
|
}
|