From e81ffdea234949ee132de01f83d39a4d0e775265 Mon Sep 17 00:00:00 2001 From: Jakub Dorfman Date: Sun, 26 Apr 2026 15:47:28 +0200 Subject: [PATCH] Enable TOTP and WebAuthn in Authelia configuration(QR code) Co-authored-by: Copilot --- authelia.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/authelia.nix b/authelia.nix index e1d3de2..477197a 100644 --- a/authelia.nix +++ b/authelia.nix @@ -40,10 +40,13 @@ log.level = "info"; totp = { + disable = false; issuer = "srazka.com"; period = 30; }; + webauthn.disable = true; + # File-based user database (simplest, no LDAP needed) authentication_backend.file = { path = config.age.secrets."authelia-users".path;