diff --git a/hosts/hitsugibune/matrix.nix b/hosts/hitsugibune/matrix.nix index d4dcee0..b40ab61 100644 --- a/hosts/hitsugibune/matrix.nix +++ b/hosts/hitsugibune/matrix.nix @@ -182,15 +182,16 @@ in { services.matrix-synapse = { enable = true; - settings.server_name = config.networking.domain; + extras = [ "oidc" ]; # The public base URL value must match the `base_url` value set in `clientConfig` above. # The default value here is based on `server_name`, so if your `server_name` is different # from the value of `fqdn` above, you will likely run into some mismatched domain names # in client applications. - settings.public_baseurl = baseUrl; - settings.enable_registration = false; - enableRegistrationScript = true; settings = { + server_name = config.networking.domain; + public_baseurl = baseUrl; + enable_registration = false; + enableRegistrationScript = true; listeners = [ { port = 8008; @@ -206,6 +207,7 @@ in { ]; } ]; + log_level = "DEBUG"; }; settings.app_service_config_files = [ "/var/lib/mautrix-signal/double-puppeting.yaml"