rice/hosts/alice/tlp.nix

21 lines
403 B
Nix
Raw Permalink Normal View History

2024-06-05 09:21:21 +00:00
{
2024-01-19 14:36:08 +00:00
services = {
tlp = {
enable = true;
settings = let
max_percent = 60;
start_charge = 100 - max_percent;
stop_charge = max_percent;
2024-01-19 14:36:08 +00:00
in {
START_CHARGE_THRESH_BAT0 = start_charge;
STOP_CHARGE_THRESH_BAT0 = stop_charge;
START_CHARGE_THRESH_BAT1 = start_charge;
STOP_CHARGE_THRESH_BAT1 = stop_charge;
};
};
};
}