dotfiles/modules/shell/fish.nix

20 lines
303 B
Nix
Raw Normal View History

2022-01-14 14:48:03 +01:00
{ config, lib, options, pkgs, ... }:
with lib;
let
cfg = config.modules.shell.fish;
in {
options.modules.shell.fish = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf cfg.enable {
2022-01-14 14:48:03 +01:00
home._.programs.fish = {
enable = true;
};
};
}