universe/users/modules/global/shells/fish.nix

12 lines
221 B
Nix

{ config, lib, ... }:
{
programs.fish = {
enable = true;
functions = { };
shellAbbrs = { };
interactiveShellInit = ''
kitty + complete setup fish | source
set -U fish_greeting
'';
};
}