14 lines
185 B
Nix
14 lines
185 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
services.logind.extraConfig = ''
|
|
# don't shutdown in short press
|
|
HandlePowerKey=ignore
|
|
|
|
# Milliseconds
|
|
IdleActionSec=600
|
|
'';
|
|
}
|