rice/hosts/alice/tlp.nix

19 lines
355 B
Nix
Raw Normal View History

2024-01-19 14:36:08 +00:00
_: {
services = {
tlp = {
enable = true;
settings = let
start_charge = 40;
stop_charge = 60;
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;
};
};
};
}