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