18 lines
265 B
Nix
18 lines
265 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
services.pcscd.enable = true;
|
|
|
|
security.pam.services.swaylock = {
|
|
text = ''
|
|
auth sufficient pam_unix.so try_first_pass likeauth nullok
|
|
auth sufficient pam_fprintd.so
|
|
auth include login
|
|
'';
|
|
};
|
|
}
|