Remove non-cpufreq_* modules since they are loaded by udev.

This commit is contained in:
Mathnerd314 2014-07-14 02:35:09 +02:00
parent f264c638df
commit 87b3e7a93c

View File

@ -30,9 +30,7 @@ in
config = mkIf (!config.boot.isContainer && config.powerManagement.cpuFreqGovernor != null) {
boot.kernelModules = [ "acpi-cpufreq" "speedstep-lib" "pcc-cpufreq"
"cpufreq_${cfg.cpuFreqGovernor}"
];
boot.kernelModules = [ "cpufreq_${cfg.cpuFreqGovernor}" ];
environment.systemPackages = [ cpupower ];