nixos/modules/options/zsh.nix

18 lines
267 B
Nix

{
config,
lib,
...
}:
with lib;
let
cfg = config.modules.zsh;
in
{
options.modules.zsh = {
enable = mkEnableOption "Install ZSH";
defaultShell = mkEnableOption {
description = "Set ZSH as the default shell";
default = true;
};
};
}