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