nix-config/config/hardware/laptop.nix
Patrick fcd5a27dce
chore: new README
chore: new structure
2024-04-11 23:11:53 +02:00

20 lines
322 B
Nix

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