{ pkgs, ... }: { programs.fish = { enable = true; interactiveShellInit = "set -g -x GPG_TTY (tty)"; shellAliases = { cat = "bat"; ls = "eza"; nix-fish = "nix-shell --command fish"; }; }; home.packages = with pkgs; [ bat eza ]; }