10 lines
158 B
Nix
10 lines
158 B
Nix
{ ...
|
|
}: {
|
|
services.logind.extraConfig = ''
|
|
# don't shutdown in short press
|
|
HandlePowerKey=ignore
|
|
|
|
# Milliseconds
|
|
IdleActionSec=600
|
|
'';
|
|
}
|