summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2025-12-28 21:41:56 -0600
committerAlejandro Soto <alejandro@34project.org>2025-12-28 21:41:56 -0600
commit8df676a93c080ce909112c7b3c19aabb5bd7de29 (patch)
treee539dc5b3be15232eab83da5feed9571116ca7c0
parent10cc224d847c895df0fcf0cd6a27b56489e14f87 (diff)
sys/hardware/yubico: fix data types of pam_u2f arguments
Diffstat (limited to '')
-rw-r--r--sys/hardware/yubico.nix6
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;
};
};