nix-configs/modules/desktop-environment/tlp.nix

10 lines
154 B
Nix
Raw Normal View History

2024-11-29 15:47:35 +01:00
{...}: {
services.tlp = {
enable = true;
settings = {
START_CHARGE_THRESH_BAT0 = "70";
STOP_CHARGE_TRESH_BAT0 = "85";
};
};
}