Commit 9fc0ba3087ec

Vincent Demeester <vincent@sbr.pm>
2025-04-19 02:00:13
systems: configure (and disable) fprintd
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent f6bc797
Changed files (2)
systems
common
services
kyushu
systems/common/services/fprint.nix
@@ -0,0 +1,10 @@
+{ config, ... }:
+{
+  services.fprintd = {
+    enable = true;
+  };
+  security.pam.services = {
+    login.fprintAuth = true;
+    sudo.fprintAuth = true;
+  };
+}
systems/kyushu/extra.nix
@@ -7,6 +7,7 @@
     ../common/programs/git.nix
     ../common/programs/tmux.nix
     ../common/services/networkmanager.nix
+    # ../common/services/fprint.nix # With yubikey I don't really need this to be honest
 
     ../redhat
   ];