nix-config/hosts/common/global/power-button.nix

11 lines
155 B
Nix
Raw Normal View History

2023-12-24 11:16:59 +01:00
{
inputs,
lib,
...
}: {
services.logind.extraConfig = ''
2023-12-25 21:38:40 +01:00
# don't shutdown when power button is short-pressed
HandlePowerKey=ignore
2023-12-24 11:16:59 +01:00
'';
}