From ca2386a7ba437d8704ac2ec8f235f15e01478165 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Mon, 14 Oct 2024 23:19:01 +0200 Subject: [PATCH] system/services: remove fprintd config for now (not working) --- system/services/greetd.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/system/services/greetd.nix b/system/services/greetd.nix index fc9b926..2bb3b14 100644 --- a/system/services/greetd.nix +++ b/system/services/greetd.nix @@ -19,16 +19,6 @@ }; }; - security.pam.services.greetd.text = lib.mkIf config.services.fprintd.enable '' - account required pam_unix.so - - # disable fprintd on greetd - auth sufficient pam_unix.so try_first_pass likeauth - auth required pam_deny.so - - password sufficient pam_unix.so nullok yescrypt - - session required pam_env.so conffile=/etc/pam/environment readenv=0 - session required pam_unix.so - ''; + security.pam.services.login.enableGnomeKeyring = true; + security.pam.services.greetd.enableGnomeKeyring = true; }