From 2a36446b4736965c9ac400a5c030ffd9bd5060d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Mon, 30 Sep 2024 21:26:06 +0200 Subject: [PATCH] chore(fingerprint): try the recommended way to install fingerprint drivers --- t470.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/t470.nix b/t470.nix index 9374ff5..33b9177 100644 --- a/t470.nix +++ b/t470.nix @@ -84,4 +84,12 @@ }; wantedBy = ["multi-user.target"]; }; + + # fingerprint sensor setup + systemd.services.fprintd = { + wantedBy = ["multi-user.target"]; + serviceConfig.type = "simple"; + }; + + services.fprintd.enable = true; }