From 97d2610240bcd2ebbe9ee40d29177fb862663287 Mon Sep 17 00:00:00 2001 From: blake Date: Thu, 6 Nov 2025 00:22:37 -0600 Subject: [PATCH] fprintd test --- hosts/nixos/yveltal/configuration.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/hosts/nixos/yveltal/configuration.nix b/hosts/nixos/yveltal/configuration.nix index 3614b55..85e3f2d 100644 --- a/hosts/nixos/yveltal/configuration.nix +++ b/hosts/nixos/yveltal/configuration.nix @@ -1,4 +1,4 @@ -{ config, lib, modulesPath, inputs, stable_pkgs, unstable_pkgs, ... }: +{ pkgs, config, lib, modulesPath, inputs, stable_pkgs, unstable_pkgs, ... }: { imports = @@ -15,6 +15,15 @@ ../../../users/blake/hosts/yveltal.nix ]; + # fprint test lmao + services.fprintd = { + enable = true; + tod = { + enable = true; + driver = pkgs.libfprint-2-tod1-goodix; + }; + }; + system = { ssh.enable = true; sops.enable = true;