nixos-config/home/fish.nix

14 lines
317 B
Nix
Raw Normal View History

{ pkgs, ... }: {
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";
};
};
home.packages = with pkgs; [ bat eza ];
2023-04-30 06:59:00 +00:00
}