nix-config/modules/fingerprint.nix
2024-10-15 10:44:53 +02:00

9 lines
164 B
Nix

{ pkgs, ...}:
{
services.fprintd = {
enable = true;
};
security.pam.services.login.fprintAuth = true;
security.pam.services.sudo.fprintAuth = true;
}