flake/nixos/power-management/tlp.nix

18 lines
407 B
Nix
Raw Normal View History

{...}: {
2023-09-19 00:17:43 +00:00
services.tlp = {
enable = true;
settings = {
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
2023-10-05 10:09:04 +00:00
2023-09-19 00:17:43 +00:00
CPU_ENERGY_PERF_POLICY_ON_AC = "performance";
CPU_ENERGY_PERF_POLICY_ON_BAT = "powersave";
2023-10-05 10:09:04 +00:00
2023-09-19 00:17:43 +00:00
CPU_MIN_PERF_ON_AC = 0;
CPU_MAX_PERF_ON_AC = 100;
CPU_MIN_PERF_ON_BAT = 0;
CPU_MAX_PERF_ON_BAT = 20;
};
};
}