blob: b16b0e989197439d2b34e7e09dea76df064b8e02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ 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;
};
};
};
}
|