nix-infra/modules/home/fish/default.nix
2024-04-01 19:16:35 +02:00

19 lines
341 B
Nix

{ ... }: {
programs.fish = {
enable = true;
interactiveShellInit = ''
set -g fish_greeting
set -g fish_key_bindings fish_vi_key_bindings
set -x GPG_TTY (tty)
gpgconf --launch gpg-agent
gpg-connect-agent updatestartuptty /bye > /dev/null
'';
shellAliases = {
g = "git";
};
};
}