fingerprints :)

This commit is contained in:
KoenDR06 2025-11-09 22:06:53 +01:00
parent 7bca3bbe77
commit 311cb2620a
4 changed files with 26 additions and 1 deletions

View file

@ -0,0 +1,18 @@
{
lib,
config,
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.horseman.hardware.fingerprint;
in {
options = {
horseman.hardware.fingerprint = {
enable = mkEnableOption "Enables fingerprint support";
};
};
config = mkIf cfg.enable {
services.fprintd.enable = true;
};
}