Compare commits

...

3 Commits

Author SHA1 Message Date
9e88ab28c3
Tweak upower daemon battery thresholds 2020-09-15 13:47:44 +02:00
dac2cefb67
Disable bluetooth on startup 2020-09-15 13:47:35 +02:00
66183e761c
Revert "Disable touchscreen via TLP"
This reverts commit 7d23e7f63a.
2020-09-15 13:45:45 +02:00

View File

@ -32,14 +32,16 @@
TPACPI_ENABLE = 1; TPACPI_ENABLE = 1;
TPSMAPI_ENABLE = 1; TPSMAPI_ENABLE = 1;
# Disable touchscreen to save battery # Disable bluetooth on startup
RUNTIME_PM_DRIVER_BLACKLIST = "usbhid"; DEVICES_TO_DISABLE_ON_STARTUP = "bluetooth";
}; };
}; };
# Suspend to RAM/disk when battery is critical # Suspend to RAM/disk when battery is critical
services.upower = { services.upower = {
enable = true; enable = true;
percentageAction = 5; percentageLow = 15;
percentageCritical = 10;
percentageAction = 7;
}; };
} }