9 lines
164 B
Nix
9 lines
164 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.fprintd = {
|
|
enable = true;
|
|
};
|
|
|
|
security.pam.services.login.fprintAuth = true;
|
|
security.pam.services.sudo.fprintAuth = true;
|
|
}
|