1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 03:57:44 +00:00

Ignore power button

This commit is contained in:
RGBCube 2023-11-24 16:13:53 +03:00
parent 49de83622e
commit 5ed12052f0
No known key found for this signature in database
3 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View file

@ -14,6 +14,7 @@
!machines/enka/helix/
!machines/enka/hyprland/
!machines/enka/kitty/
!machines/enka/logind/
!machines/enka/networkmanager/
!machines/enka/nushell/
!machines/enka/openttd/

View file

@ -27,6 +27,7 @@
./helix
./hyprland
./kitty
./logind
./networkmanager
./nushell
./openttd

View file

@ -0,0 +1,5 @@
{ systemConfiguration, ... }:
systemConfiguration {
services.logind.powerKey = "ignore";
}