1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-28 23:48:33 +02:00

Clarify kernel version condition

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
pasqui23 2022-08-01 12:03:29 +02:00 committed by GitHub
parent 8732fa9eb5
commit 68a27c2b00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@
# On recent AMD cupus this can be more energy efficient
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" ];
kernelModules = [ "amd-pstate" ];
};