mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02:13:55 -05:00
swaylock: enable fingerprint login with password fallback
This commit is contained in:
parent
fd70764c00
commit
1a86afa3af
|
@ -20,7 +20,25 @@
|
|||
};
|
||||
|
||||
security.pam.services = {
|
||||
swaylock = {};
|
||||
swaylock = {
|
||||
text = ''
|
||||
# Account management.
|
||||
account required pam_unix.so # unix (order 10900)
|
||||
|
||||
# Authentication management.
|
||||
auth sufficient pam_unix.so likeauth try_first_pass likeauth nullok # unix (order 11500)
|
||||
${if config.services.fprintd.enable then "auth sufficient ${pkgs.fprintd}/lib/security/pam_fprintd.so # fprintd (order 11300)" else ""}
|
||||
|
||||
auth required pam_deny.so # deny (order 12300)
|
||||
|
||||
# Password management.
|
||||
password sufficient pam_unix.so nullok yescrypt # unix (order 10200)
|
||||
|
||||
# Session management.
|
||||
session required pam_env.so conffile=/etc/pam/environment readenv=0 # env (order 10100)
|
||||
session required pam_unix.so # unix (order 10200)
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
|
|
Loading…
Reference in a new issue