From 58d1c42ffbd3dcff022b2ec0bbe5837a43e07507 Mon Sep 17 00:00:00 2001 From: Yuri Tatishchev Date: Mon, 30 Jun 2025 12:51:30 -0700 Subject: [PATCH] laptop: disable fprint auth for sddm --- hosts/Yura-TPX13/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/Yura-TPX13/default.nix b/hosts/Yura-TPX13/default.nix index 8b85145..021983c 100644 --- a/hosts/Yura-TPX13/default.nix +++ b/hosts/Yura-TPX13/default.nix @@ -14,7 +14,9 @@ networking.hostName = "Yura-TPX13"; # Define your hostname. networking.hostId = "8425e349"; # Required for ZFS. + # Enable fingerprint authentication except for SDDM services.fprintd.enable = true; + security.pam.services.sddm.fprintAuth = false; # Install firefox. programs.firefox.enable = true;