nixos-config/home/fish.nix

13 lines
269 B
Nix
Raw Normal View History

2023-08-26 23:00:18 +00:00
{ ... }: {
2023-04-30 06:59:00 +00:00
programs.fish = {
enable = true;
interactiveShellInit = "set -g -x GPG_TTY (tty)";
shellAliases = {
cat = "bat";
2023-09-10 00:51:29 +00:00
ls = "eza";
2023-04-30 06:59:00 +00:00
cp = "cp --reflink=auto --sparse=always";
nix-fish = "nix-shell --command fish";
};
};
}