cornflake/home-manager/fish/default.nix
2026-02-28 19:06:35 +09:00

13 lines
273 B
Nix

{ ... }:
{
programs.fish = {
enable = true;
interactiveShellInit = ''
set -g fish_greeting ""
set -gx SSH_AUTH_SOCK "$XDG_RUNTIME_DIR/ssh-agent"
'';
};
xdg.configFile."fish/functions/fish_prompt.fish".source = ./functions/fish_prompt.fish;
}