NixToSee/modules/software/shells/fish.nix
2025-01-13 03:16:02 +01:00

15 lines
344 B
Nix

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