universe/users/profiles/shells/fish.nix

13 lines
264 B
Nix

{ config, lib, pkgs, ... }: {
programs = {
fish = {
enable = true;
functions = { };
shellAbbrs = { };
};
starship.enableFishIntegration = lib.mkIf config.programs.starship.enable true;
};
environment.shells = [ pkgs.fish ];
}