From ceebecbfa3630eb59988d215cf9d2faab1616bcf Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Sat, 8 Feb 2025 13:36:04 +0100 Subject: [PATCH] Fix consent mode for FreshRSS --- modules/authelia.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/authelia.nix b/modules/authelia.nix index a5c1d2b..021dec6 100644 --- a/modules/authelia.nix +++ b/modules/authelia.nix @@ -68,7 +68,6 @@ configMap = { identity_providers.oidc = { enabled = true; - consent_mode = "implicit"; hmac_secret = { secret_name = "authelia"; @@ -93,6 +92,7 @@ scopes = ["openid" "groups" "email" "profile"]; userinfo_signed_response_alg = "none"; token_endpoint_auth_method = "client_secret_basic"; + consent_mode = "implicit"; } ]; };