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

17 lines
275 B
Nix

{ config, lib, ... }:
lib.my.makeSwitch {
inherit config;
optionName = "all desktop gaming things";
optionPath = [
"desktop"
"gaming"
"all"
];
config' = {
my.desktop.gaming = {
minecraft.enable = true;
steam.enable = true;
};
};
}