alqueva/computers/shared/fish.nix

22 lines
352 B
Nix
Raw Normal View History

2024-10-16 08:55:04 +01:00
{
config,
lib,
...
}: let
cfg = config.alqueva.fish;
in {
options.alqueva.fish = {
enable = lib.mkEnableOption "fish";
};
config = lib.mkIf cfg.enable {
programs.fish = {
vendor = {
functions.enable = true;
config.enable = true;
completions.enable = true;
};
enable = true;
};
};
}