dotfiles/homes/modules/fish.nix

19 lines
299 B
Nix
Executable file

{
config,
pkgs,
...
}: {
programs.fish = {
enable = true;
interactiveShellInit = ''
#set -g fish_greeting "Welcome weary traveler to my shop"
cat ~/banner
'';
plugins = [
{
name = "grc";
src = pkgs.fishPlugins.grc.src;
}
];
};
}