nix-configs/modules/desktop-environment/tlp.nix
Schrottkatze 9f0a3640d8
add tlp
2024-11-29 15:47:35 +01:00

10 lines
154 B
Nix

{...}: {
services.tlp = {
enable = true;
settings = {
START_CHARGE_THRESH_BAT0 = "70";
STOP_CHARGE_TRESH_BAT0 = "85";
};
};
}