nixos/modules/options/zsh.nix

17 lines
201 B
Nix

{
config,
lib,
...
}:
with lib;
let
cfg = config.modules.zsh;
in
{
options.modules.zsh = {
enable = mkEnableOption {
description = "Install Zsh";
default = true;
};
};
}