universe/users/profiles/shells/fish.nix
2022-04-29 10:27:44 -04:00

11 lines
219 B
Nix

{ config, lib, ... }: {
programs = {
fish = {
enable = true;
functions = { };
shellAbbrs = { };
};
starship.enableFishIntegration = lib.mkIf config.programs.starship.enable true;
};
}