diff options
| author | Baitinq <[email protected]> | 2022-09-15 02:05:55 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-15 02:05:55 +0200 |
| commit | 27b5a1e7b71a8d15ae5fc0a1e7e14b0a4f1db192 (patch) | |
| tree | 7b1be58f3766c160f3c752107a0039f0ec53d835 /hosts/configuration.nix | |
| parent | Add tmux program (diff) | |
| download | nixos-config-27b5a1e7b71a8d15ae5fc0a1e7e14b0a4f1db192.tar.gz nixos-config-27b5a1e7b71a8d15ae5fc0a1e7e14b0a4f1db192.tar.bz2 nixos-config-27b5a1e7b71a8d15ae5fc0a1e7e14b0a4f1db192.zip | |
Add wayland idling/locking via sway(idle/lock)
Diffstat (limited to 'hosts/configuration.nix')
| -rw-r--r-- | hosts/configuration.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 0a2c8a3..bb0817c 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -117,6 +117,13 @@ wlr.enable = true; }; + #fix swaylock + security.pam.services.swaylock = { + text = '' + auth include login + ''; + }; + # List services that you want to enable: services = { openssh = { |