nixconfig/modules/tlp.nix

11 lines
288 B
Nix
Raw Normal View History

2023-04-12 20:32:07 +02:00
{...}:{
services.tlp = {
enable = true;
settings = {
START_CHARGE_THRESH_BAT0 = 75;
STOP_CHARGE_THRESH_BAT0 = 90;
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
};
};
}