cornflake/home-manager/fish/default.nix

12 lines
216 B
Nix

{ ... }:
{
programs.fish = {
enable = true;
interactiveShellInit = ''
set -g fish_greeting ""
'';
};
xdg.configFile."fish/functions/fish_prompt.fish".source = ./functions/fish_prompt.fish;
}