Fingerprint scanner: Difference between revisions

Frontear (talk | contribs)
don't encourage enabling fprintd service at boot, this goes against upstream wishes and can lead to possible hardware damage, as many fingerprint scanners are not intended to remain "active" for a long time. it is more appropriate for the service to activate via dbus when it is needed, to greatly reduce this risk.
Phobos (talk | contribs)
m syntax for code block updates
 
Line 2: Line 2:


== Install ==
== Install ==
<syntaxhighlight lang="nixos">
{{File|3={ config, lib, pkgs, ... }: {
# configuration.nix
{ config, lib, pkgs, ... }: {
  # ...


   # Install the driver
   # Install the driver
Line 21: Line 18:
   #  libfprint = pkgs.libfprint-focaltech-2808-a658;
   #  libfprint = pkgs.libfprint-focaltech-2808-a658;
   # };
   # };
}
}|name=/etc/nixos/configuration.nix|lang=nix}}
</syntaxhighlight>


== Enroll fingerprint ==
== Enroll fingerprint ==