Files
ccl-nixos-dotfiles/modules/cmd/shell/all.nix
2025-04-13 15:09:14 +08:00

16 lines
217 B
Nix

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