From 424c5df00436e4c1fbbce25f7e764414e091fc64 Mon Sep 17 00:00:00 2001 From: niten Date: Tue, 13 Feb 2024 16:18:02 -0800 Subject: [PATCH] Oh FFS, got the algo wrong... --- matrix-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix-module.nix b/matrix-module.nix index 807761b..7480d5c 100644 --- a/matrix-module.nix +++ b/matrix-module.nix @@ -128,7 +128,7 @@ in { oidc_providers = [ ]; jwt_config = mkIf (cfg.openid.jwt-secret != null) { enabled = true; - algorithm = "HS256"; + algorithm = "RS256"; secret = cfg.openid.jwt-secret; }; listeners = [{