diff options
Diffstat (limited to 'modules/home/suites/gaming')
| -rw-r--r-- | modules/home/suites/gaming/default.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/home/suites/gaming/default.nix b/modules/home/suites/gaming/default.nix new file mode 100644 index 0000000..f72af27 --- /dev/null +++ b/modules/home/suites/gaming/default.nix @@ -0,0 +1,19 @@ +{ 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 = { + steam.enable = true; + prismlauncher.enable = true; + lutris.enable = true; + }; + }; + }; +} |