nix-config/hosts/common/global/fish.nix

18 lines
296 B
Nix
Raw Normal View History

2023-12-24 11:16:59 +01:00
{
inputs,
pkgs,
...
}: {
programs.fish = {
enable = true;
vendor = {
completions.enable = true;
config.enable = true;
functions.enable = true;
};
useBabelfish = true;
};
users.defaultUserShell = pkgs.fish;
environment.shells = with pkgs; [fish];
}