summaryrefslogtreecommitdiff
path: root/system/fingerprint.nix
blob: 35737f570cbe90876009d5ecaed44a0c5df88c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  lib,
  config,
  pkgs,
  ...
}: let
  inherit (lib) mkIf;
in {
  config = mkIf config.fingerprint {
    services.fprintd = {
      enable = true;
      tod.enable = true;
      tod.driver = pkgs.libfprint-2-tod1-vfs0090;
    };
  };
}