nix-config/modules/hardware/laptop.nix

17 lines
285 B
Nix
Raw Normal View History

{pkgs, ...}: {
services = {
2023-05-18 11:47:55 +02:00
logind.extraConfig = ''
IdleAction=suspend
IdleActionSec=300
'';
physlock.enable = true;
tlp = {
enable = true;
settings = {
USB_EXCLUDE_PHONE = 1;
};
};
2023-06-01 09:49:01 +02:00
};
2023-06-02 14:18:30 +02:00
hardware.acpilight.enable = true;
}