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