11 lines
219 B
Nix
11 lines
219 B
Nix
{ config, lib, ... }: {
|
|
programs = {
|
|
fish = {
|
|
enable = true;
|
|
functions = { };
|
|
shellAbbrs = { };
|
|
};
|
|
|
|
starship.enableFishIntegration = lib.mkIf config.programs.starship.enable true;
|
|
};
|
|
}
|