1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-08-01 12:37:46 +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/helix/
!machines/enka/hyprland/ !machines/enka/hyprland/
!machines/enka/kitty/ !machines/enka/kitty/
!machines/enka/logind/
!machines/enka/networkmanager/ !machines/enka/networkmanager/
!machines/enka/nushell/ !machines/enka/nushell/
!machines/enka/openttd/ !machines/enka/openttd/

View file

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

View file

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