summary refs log tree commit diff stats
path: root/sys/security/pam/default.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sys/security/pam/default.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/sys/security/pam/default.nix b/sys/security/pam/default.nix
deleted file mode 100644
index ee0d843..0000000
--- a/sys/security/pam/default.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{config, ...}: {
-  security.pam = {
-    services = {
-      swaylock = {};
-      sudo = {
-        u2fAuth = true;
-      };
-      login = {
-        u2fAuth = true;
-      };
-    };
-    u2f = {
-      enable = true;
-      cue = true;
-      authFile = config.age.secrets.pamu2f-mappings.path;
-    };
-  };
-}