From 72fea2077cbd6febb1fa83b697d1ae4950bfc75d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kl=C3=A4hn?= <39526136+Septias@users.noreply.github.com> Date: Fri, 29 Dec 2023 19:58:24 +0100 Subject: [PATCH] Update config for xps-13-9010 Add configuration for finger print --- dell/xps/13-9310/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dell/xps/13-9310/default.nix b/dell/xps/13-9310/default.nix index 8f8fabb..495cff1 100644 --- a/dell/xps/13-9310/default.nix +++ b/dell/xps/13-9310/default.nix @@ -16,6 +16,12 @@ # Without this we get errors in dmesg on boot and hangs when shutting down. boot.blacklistedKernelModules = [ "psmouse" ]; + # enable finger print sensor. + # this has to be configured with `sudo fprintd-enroll septias` + services.fprintd.enable = true; + services.fprintd.tod.enable = true; + services.fprintd.tod.driver = pkgs.libfprint-2-tod1-goodix; + # Allows for updating firmware via `fwupdmgr`. services.fwupd.enable = true; }