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; +}