nixos/modules/options/zsh.nix

14 lines
157 B
Nix

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