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