16 lines
343 B
Nix
16 lines
343 B
Nix
{ config, lib, pkgs, ... }: {
|
|
imports = [ ./common.nix ];
|
|
|
|
programs = {
|
|
fish = {
|
|
enable = true;
|
|
functions = { };
|
|
shellAbbrs = { };
|
|
interactiveShellInit = ''
|
|
kitty + complete setup fish | source
|
|
'';
|
|
};
|
|
|
|
starship.enableFishIntegration = lib.mkIf config.programs.starship.enable true;
|
|
};
|
|
}
|