From 3cfd36f1d7b559d8f24e22727f2c2e2303bd2757 Mon Sep 17 00:00:00 2001 From: s0me1newithhand7s Date: Fri, 29 May 2026 00:13:50 +0300 Subject: [PATCH] feat(ada): u2f init Signed-off-by: s0me1newithhand7s --- ada/security/pam/u2f.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ada/security/pam/u2f.nix diff --git a/ada/security/pam/u2f.nix b/ada/security/pam/u2f.nix new file mode 100644 index 0000000..9d55bf8 --- /dev/null +++ b/ada/security/pam/u2f.nix @@ -0,0 +1,11 @@ +_: { + security = { + pam = { + u2f = { + enable = true; + cue = true; + # control = "required"; + }; + }; + }; +}