From 6f72897fb0dd0f16677278134dc0a7917c8285cb Mon Sep 17 00:00:00 2001 From: jay Date: Wed, 2 Jul 2025 16:16:24 -0400 Subject: [PATCH] Add fprintd for fingerprints. --- nodes/hosts/lappy/configuration.nix | 1 + nodes/hosts/lappy/services/fprintd.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 nodes/hosts/lappy/services/fprintd.nix diff --git a/nodes/hosts/lappy/configuration.nix b/nodes/hosts/lappy/configuration.nix index 00e2e93..c60fa42 100644 --- a/nodes/hosts/lappy/configuration.nix +++ b/nodes/hosts/lappy/configuration.nix @@ -9,6 +9,7 @@ [ # Include the results of the hardware scan. ./hardware-configuration.nix ./programs/sof-firmware.nix + ./services/fprintd.nix ./services/touchpad.nix ./system/bootloader.nix ./system/filesystems.nix diff --git a/nodes/hosts/lappy/services/fprintd.nix b/nodes/hosts/lappy/services/fprintd.nix new file mode 100644 index 0000000..d05daa9 --- /dev/null +++ b/nodes/hosts/lappy/services/fprintd.nix @@ -0,0 +1,4 @@ +{ pkgs, ...}: { + services.fprintd.enable = true; + services.fprintd.tod.enable = true; +}