home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit 905c7fa1e322dd8d3397cc688918f8de592f3c9d
parent 702763045eec8faeefcc4caa91c71b15965e2bc6
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Wed, 28 Sep 2022 17:01:07 +0200

systems/wakasu: disable pam+fprint

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/hosts/wakasu.nix | 23++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/systems/hosts/wakasu.nix b/systems/hosts/wakasu.nix @@ -141,15 +141,16 @@ in }; }; - security = { - pam = { - services = { - login.fprintAuth = true; - swaylock-effects.fprintAuth = true; - sudo.fprintAuth = true; - system-local-login.fprintAuth = true; - su.fprintAuth = true; - }; - }; - }; + # fingerprint auth is actually very weird.. especially on "office mode", when the lid can be closed. + # security = { + # pam = { + # services = { + # login.fprintAuth = true; + # swaylock-effects.fprintAuth = true; + # sudo.fprintAuth = true; + # system-local-login.fprintAuth = true; + # su.fprintAuth = true; + # }; + # }; + # }; }