summaryrefslogtreecommitdiff
path: root/hosts/kay/modules/matrix-sliding-sync.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/kay/modules/matrix-sliding-sync.nix')
-rw-r--r--hosts/kay/modules/matrix-sliding-sync.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/hosts/kay/modules/matrix-sliding-sync.nix b/hosts/kay/modules/matrix-sliding-sync.nix
index b86a0bf..ebdc34d 100644
--- a/hosts/kay/modules/matrix-sliding-sync.nix
+++ b/hosts/kay/modules/matrix-sliding-sync.nix
@@ -9,6 +9,10 @@ in
services.matrix-sliding-sync = {
enable = true;
environmentFile = config.sops.secrets."matrix-${domain}/sliding_sync".path;
- settings.SYNCV3_SERVER = "http://127.0.0.1:${toString config.services.dendrite.httpPort}";
+
+ settings = {
+ SYNCV3_LOG_LEVEL = "warn";
+ SYNCV3_SERVER = "http://127.0.0.1:${toString config.services.dendrite.httpPort}";
+ };
};
}