2022-07-30 12:21:03 -04:00
|
|
|
{ lib, config, ... }: {
|
2022-08-01 06:03:29 -04:00
|
|
|
# Enables the amd cpu scaling https://www.kernel.org/doc/html/latest/admin-guide/pm/amd-pstate.html
|
2022-08-01 08:14:12 -04:00
|
|
|
# On recent AMD CPUs this can be more energy efficient.
|
2022-07-30 12:21:03 -04:00
|
|
|
|
|
|
|
imports = [ ./. ];
|
2022-08-01 06:03:29 -04:00
|
|
|
boot = lib.mkIf (lib.versionAtLeast config.boot.kernelPackages.kernel.version "5.17") {
|
2022-07-30 12:21:03 -04:00
|
|
|
kernelParams = [ "initcall_blacklist=acpi_cpufreq_init" ];
|
|
|
|
kernelModules = [ "amd-pstate" ];
|
|
|
|
};
|
|
|
|
}
|