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

21 lines
261 B
Nix

{
config,
lib,
...
}:
lib.my.makeSwitch {
inherit config;
optionName = "all window managers";
optionPath = [
"desktop"
"wm"
"all"
];
config' = {
my.desktop.wm = {
cage.enable = true;
niri.enable = true;
};
};
}