diff --git a/devices/pc/default.nix b/devices/pc/default.nix index 153e9bd8..177e5b34 100644 --- a/devices/pc/default.nix +++ b/devices/pc/default.nix @@ -48,7 +48,7 @@ inputs: { march = "znver4"; cuda = { enable = true; capabilities = [ "8.9" ]; forwardCompat = false; }; }; kernel = { - variant = "xanmod-latest"; + variant = "cachyos"; patches = [ "hibernate-progress" ]; modules.modprobeConfig = [ "options iwlwifi power_save=0" "options iwlmvm power_scheme=1" "options iwlwifi uapsd_disable=1" ]; @@ -190,6 +190,11 @@ inputs: }; system.nixos.tags = [ "nvidia" ]; }; + xanmod.configuration = + { + nixos.system.kernel.variant = inputs.lib.mkForce "xanmod-latest"; + system.nixos.tags = [ "xanmod" ]; + }; }; }; }