Files
nixos/laptop/modules/services.nix

19 lines
477 B
Nix
Raw Permalink Normal View History

2026-02-17 20:02:25 +01:00
{
...
}:
{
2026-02-18 00:13:02 +01:00
services.thermald.enable = true; # Prevents overheating/throttling
services.power-profiles-daemon.enable = false;
services.tlp = {
enable = true;
settings = {
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
2026-02-18 00:35:38 +01:00
CPU_ENERGY_PERF_POLICY_ON_BAT = "balance_power";
2026-02-18 00:13:02 +01:00
CPU_ENERGY_PERF_POLICY_ON_AC = "balance_performance";
2026-02-18 00:35:38 +01:00
CPU_MIN_PERF_ON_BAT = 0;
CPU_MAX_PERF_ON_BAT = 80;
2026-02-18 00:13:02 +01:00
};
};
2026-02-17 20:02:25 +01:00
}