diff --git a/users/profiles/shells/fish.nix b/users/profiles/shells/fish.nix new file mode 100644 index 0000000..9ea16f1 --- /dev/null +++ b/users/profiles/shells/fish.nix @@ -0,0 +1,11 @@ +{ config, lib, ... }: { + programs = { + fish = { + enable = true; + functions = { }; + shellAbbrs = { }; + }; + + starship.enableFishIntegration = lib.mkIf config.programs.starship.enable true; + }; +}