Compare commits

...

2 Commits

Author SHA1 Message Date
Simon Bruder c419778e67
mayushii: Set charge start threshold to 75
The previous one of 40 did no longer meet my use case.
2022-12-23 18:42:06 +01:00
Simon Bruder e1e1ff06e0
gui: Enable udisks2
It no longer is implicitly enabled, so it has to be enabled explicitly.
2022-12-22 22:52:24 +01:00
2 changed files with 3 additions and 1 deletions

View File

@ -47,7 +47,7 @@
services.tlp = {
enable = true;
settings = {
START_CHARGE_THRESH_BAT0 = 40;
START_CHARGE_THRESH_BAT0 = 75;
STOP_CHARGE_THRESH_BAT0 = 90;
USB_DENYLIST = lib.concatStringsSep " " [
];

View File

@ -23,6 +23,8 @@ lib.mkIf config.sbruder.gui.enable {
services.upower.enable = true;
services.udisks2.enable = true;
# steam (and other high quality software) still ships 32 bit binaries
hardware.opengl.driSupport32Bit = lib.mkDefault pkgs.stdenv.isx86_64;