nix-config/modules/hardware/laptop.nix
Patrick 7fbe2980ea
chore: deadnix
feat: more nvim pager settings
2023-09-19 13:11:11 +02:00

17 lines
272 B
Nix

{
services = {
logind.extraConfig = ''
IdleAction=suspend
IdleActionSec=300
'';
physlock.enable = true;
tlp = {
enable = true;
settings = {
USB_EXCLUDE_PHONE = 1;
};
};
};
hardware.acpilight.enable = true;
}