From 86d53a5b8b9067121336c4f52b720622014f2df9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 12 Jul 2010 17:50:02 +0000 Subject: [PATCH] * 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 --- modules/config/power-management.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/config/power-management.nix b/modules/config/power-management.nix index dd241e4e8151..5e5a568f2ff3 100644 --- a/modules/config/power-management.nix +++ b/modules/config/power-management.nix @@ -69,6 +69,8 @@ in { source = sleepHook; target = "pm/sleep.d/00sleep-hook"; }; + + boot.kernelModules = [ "acpi_cpufreq" "cpufreq_performance" "cpufreq_powersave" "cpufreq_ondemand" ]; };