* Load the cpufreq modules, since these are not loaded automatically

by udev.  The kernel can load governors on demand, but if they are
  not loaded, HAL doesn't know about them and they don't show up in
  the KDE System Settings.

svn path=/nixos/trunk/; revision=22567
This commit is contained in:
Eelco Dolstra 2010-07-12 17:50:02 +00:00
parent dc0db647a9
commit 86d53a5b8b

View file

@ -69,6 +69,8 @@ in
{ source = sleepHook;
target = "pm/sleep.d/00sleep-hook";
};
boot.kernelModules = [ "acpi_cpufreq" "cpufreq_performance" "cpufreq_powersave" "cpufreq_ondemand" ];
};