1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-03 18:03:27 +02:00
nixos-hardware/common/cpu/amd/pstate.nix

11 lines
401 B
Nix
Raw Normal View History

2022-07-30 18:21:03 +02:00
{ lib, config, ... }: {
#Enables the amd cpu scaling https://www.kernel.org/doc/html/latest/admin-guide/pm/amd-pstate.html
2022-07-31 20:13:42 +02:00
#On recent AMD cupus this can be more energy efficient
2022-07-30 18:21:03 +02:00
imports = [ ./. ];
boot = lib.mkIf (!lib.versionOlder config.boot.kernelPackages.kernel.version "5.17") {
kernelParams = [ "initcall_blacklist=acpi_cpufreq_init" ];
kernelModules = [ "amd-pstate" ];
};
}