diff options
Diffstat (limited to 'snowfall/modules/home/suites')
| -rw-r--r-- | snowfall/modules/home/suites/gaming/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/snowfall/modules/home/suites/gaming/default.nix b/snowfall/modules/home/suites/gaming/default.nix new file mode 100644 index 0000000..201e650 --- /dev/null +++ b/snowfall/modules/home/suites/gaming/default.nix @@ -0,0 +1,17 @@ +{ options, config, lib, namespace, ... }: + +with lib; with lib.${namespace}; let + cfg = config.${namespace}.suites.gaming; +in { + options.${namespace}.suites.gaming = with types; { + enable = mkEnableOption "gaming"; + }; + + config = mkIf cfg.enable { + cxl = { + apps = { + prismlauncher.enable = true; + }; + }; + }; +} |