universe/users/profiles/shells/fish.nix

11 lines
225 B
Nix

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