NixToSee/modules/software/shells/fish.nix
Ranomier a5040dcc1b random stuff
- shell fixes
- noice function for nixos-configurations
- flake update
- random
2025-05-04 00:46:06 +02:00

14 lines
296 B
Nix

{pkgs, ...}: {
programs = {
fish = {
enable = true;
useBabelfish = true;
shellInit = ''
starship init fish | source
'';
};
nix-index.enableFishIntegration = true;
direnv.enableFishIntegration = true;
foot.enableFishIntegration = true;
};
}