about summary refs log tree commit diff stats
path: root/system/services
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--system/services/default.nix1
-rw-r--r--system/services/swaylock/default.nix5
2 files changed, 6 insertions, 0 deletions
diff --git a/system/services/default.nix b/system/services/default.nix
index 2365fde5..cb5616d0 100644
--- a/system/services/default.nix
+++ b/system/services/default.nix
@@ -7,5 +7,6 @@
     ./dconf
     ./openssh
     ./backup
+    ./swaylock
   ];
 }
diff --git a/system/services/swaylock/default.nix b/system/services/swaylock/default.nix
new file mode 100644
index 00000000..1d652c66
--- /dev/null
+++ b/system/services/swaylock/default.nix
@@ -0,0 +1,5 @@
+# vim: ts=2
+{...}: {
+  # otherwise swaylock can't access the user password.
+  security.pam.services.swaylock = {};
+}