nix/nixos/includes/hardware/cpufreq.nix
Yorick Barbanneau 18ffb81835 Confgure auto-cpufreq preoperly
Disable intel_pstate then quto-cpufreq will work properly
2023-09-28 12:13:15 +02:00

15 lines
247 B
Nix

{
services.auto-cpufreq = {
enable = true;
settings = {
battery = {
governor = "powersave";
turbo = "never";
};
charger = {
governor = "schedutil";
turbo = "auto";
};
};
};
}