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

11 lines
158 B
Nix
Raw Normal View History

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