This commit is contained in:
Schrottkatze 2024-11-29 15:47:35 +01:00
parent 6f45268150
commit 9f0a3640d8
No known key found for this signature in database
2 changed files with 10 additions and 0 deletions

View file

@ -5,6 +5,7 @@
./flatpak.nix
./home
./dm.nix
./tlp.nix
];
services.upower = {
enable = true;

View file

@ -0,0 +1,9 @@
{...}: {
services.tlp = {
enable = true;
settings = {
START_CHARGE_THRESH_BAT0 = "70";
STOP_CHARGE_TRESH_BAT0 = "85";
};
};
}