diff options
author | Emile <git@emile.space> | 2024-09-29 00:04:56 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-09-29 00:04:56 +0200 |
commit | 2ccdc54c99df595ef95fb68cbdc52d8860c0acba (patch) | |
tree | a859108e0d21d1bfebde48497a941f60d17fc5c2 | |
parent | 44dd2075fac9cc30a05540a344a2ecac25b0bcfa (diff) |
(authelia) default 2fa method totp
-rw-r--r-- | nix/hosts/corrino/www/sso.emile.space.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nix/hosts/corrino/www/sso.emile.space.nix b/nix/hosts/corrino/www/sso.emile.space.nix index fa83fb8..803af27 100644 --- a/nix/hosts/corrino/www/sso.emile.space.nix +++ b/nix/hosts/corrino/www/sso.emile.space.nix @@ -191,6 +191,8 @@ in ]; }; + # type = types.enum [ "" "totp" "webauthn" "mobile_push" ]; + default_2fa_method = "totp"; totp = { disable = false; issuer = "sso.emile.space"; |