diff options
| author | Alejandro Soto <alejandro@34project.org> | 2025-12-28 21:41:56 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2025-12-28 21:41:56 -0600 |
| commit | 8df676a93c080ce909112c7b3c19aabb5bd7de29 (patch) | |
| tree | e539dc5b3be15232eab83da5feed9571116ca7c0 /sys | |
| parent | 10cc224d847c895df0fcf0cd6a27b56489e14f87 (diff) | |
sys/hardware/yubico: fix data types of pam_u2f arguments
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/hardware/yubico.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/hardware/yubico.nix b/sys/hardware/yubico.nix index 0c26133..09285e7 100644 --- a/sys/hardware/yubico.nix +++ b/sys/hardware/yubico.nix @@ -38,9 +38,9 @@ in { settings = { authfile = "/var/trust/pam_u2f_keys"; cue = true; - pinverification = true; - userpresence = false; - userverification = false; + pinverification = 1; + userpresence = 0; + userverification = 0; }; }; |
