disable fprinpd

This commit is contained in:
Andrea Ciceri 2023-10-06 01:24:20 +02:00
parent 835325dad8
commit 1fb03a8ab9
No known key found for this signature in database

View file

@ -1,12 +1,13 @@
{pkgs, ...}: {
services.fprintd = {
enable = true;
enable = false; # temporarily disable
};
security.polkit.enable = true; # TODO needed?
security.pam.services.swaylock.text = ''
auth include login
auth sufficient pam_unix.so try_first_pass likeauth nullok
auth sufficient pam_fprintd.so
'';
# # auth sufficient pam_fprintd.so
}