10 lines
158 B
Nix
10 lines
158 B
Nix
{
|
||
inputs,
|
||
lib,
|
||
...
|
||
}: {
|
||
services.logind.extraConfig = ''
|
||
# don’t shutdown when power button is short-pressed
|
||
HandlePowerKey=ignore
|
||
'';
|
||
}
|