Clarify kernel version condition
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
8732fa9eb5
commit
68a27c2b00
|
@ -3,7 +3,7 @@
|
||||||
# On recent AMD cupus this can be more energy efficient
|
# On recent AMD cupus this can be more energy efficient
|
||||||
|
|
||||||
imports = [ ./. ];
|
imports = [ ./. ];
|
||||||
boot = lib.mkIf (!lib.versionOlder config.boot.kernelPackages.kernel.version "5.17") {
|
boot = lib.mkIf (lib.versionAtLeast config.boot.kernelPackages.kernel.version "5.17") {
|
||||||
kernelParams = [ "initcall_blacklist=acpi_cpufreq_init" ];
|
kernelParams = [ "initcall_blacklist=acpi_cpufreq_init" ];
|
||||||
kernelModules = [ "amd-pstate" ];
|
kernelModules = [ "amd-pstate" ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue