Skip to content

Commit 1369abb

Browse files
committed
feat: ✨ enable PAM fingerprint authentication for T14 Gen 6
Add PAM configuration to enable fingerprint authentication for login, sudo, su, and xscreensaver. This makes the fingerprint interface available in GNOME Settings and enables fingerprint unlock.
1 parent 69b5d17 commit 1369abb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lenovo/thinkpad/t14/intel/gen6/default.nix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,12 @@
3333

3434
# Enable fingerprint reader support
3535
services.fprintd.enable = lib.mkDefault true;
36+
37+
# Enable PAM fingerprint authentication for login and unlock
38+
security.pam.services = {
39+
login.fprintAuth = lib.mkDefault true;
40+
xscreensaver.fprintAuth = lib.mkDefault true;
41+
sudo.fprintAuth = lib.mkDefault true;
42+
su.fprintAuth = lib.mkDefault true;
43+
};
3644
}

0 commit comments

Comments
 (0)