From 9bcd40f180654a31506dd2bd8b2cffcf70e2d0be Mon Sep 17 00:00:00 2001 From: Rustam Efimov Date: Tue, 14 Apr 2026 22:00:26 +0300 Subject: [PATCH] fix(services/synapse): fix undefined variable --- services/synapse/nginx.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/synapse/nginx.nix b/services/synapse/nginx.nix index 945a713..967476f 100644 --- a/services/synapse/nginx.nix +++ b/services/synapse/nginx.nix @@ -2,7 +2,7 @@ let cfg = config.machine.synapse; - clientConfig."m.homeserver".base_url = baseUrl; + clientConfig."m.homeserver".base_url = "https://${cfg.domain}"; serverConfig."m.server" = "${cfg.domain}:443"; mkWellKnown = data: '' default_type application/json;