Commit 905c7fa1e322

Vincent Demeester <vincent@sbr.pm>
2022-09-28 17:01:07
systems/wakasu: disable pam+fprint
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 7027630
Changed files (1)
systems
systems/hosts/wakasu.nix
@@ -141,15 +141,16 @@ in
     };
   };
 
-  security = {
-    pam = {
-      services = {
-        login.fprintAuth = true;
-        swaylock-effects.fprintAuth = true;
-        sudo.fprintAuth = true;
-        system-local-login.fprintAuth = true;
-        su.fprintAuth = true;
-      };
-    };
-  };
+  # fingerprint auth is actually very weird.. especially on "office mode", when the lid can be closed.
+  # security = {
+  #   pam = {
+  #     services = {
+  #       login.fprintAuth = true;
+  #       swaylock-effects.fprintAuth = true;
+  #       sudo.fprintAuth = true;
+  #       system-local-login.fprintAuth = true;
+  #       su.fprintAuth = true;
+  #     };
+  #   };
+  # };
 }