Files
ccl-nixos-dotfiles/modules/cli/shell/all.nix
2025-04-19 12:42:19 +08:00

16 lines
217 B
Nix

{ config, lib, ... }:
lib.my.makeSwitch {
inherit config;
optionName = "all shells";
optionPath = [
"cli"
"shell"
"all"
];
config' = {
my.cli.shell = {
zsh.enable = true;
};
};
}