mv chaotic to graphics.amd

This commit is contained in:
cnst
2024-10-24 17:25:38 +02:00
parent 7654790609
commit 67ab059b11
6 changed files with 106 additions and 40 deletions

View File

@@ -4,7 +4,7 @@
config,
...
}: let
inherit (lib) mkOption;
inherit (lib) mkOption mkIf;
cfg = config.nixos.boot.kernel;
in {
options = {
@@ -70,5 +70,9 @@ in {
)
++ cfg.extraBlacklistedModules;
};
chaotic = mkIf (cfg.variant == "cachyos") {
scx.enable = true;
};
};
}