summaryrefslogtreecommitdiff
path: root/hosts/kay/modules/matrix-sliding-sync.nix
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2023-12-24 19:59:52 +0530
committersinanmohd <sinan@sinanmohd.com>2023-12-27 08:14:16 +0530
commitf4eb1af504a2a313d54c67f521d1f331a0f50720 (patch)
tree59d386bfa64d47c8d2248ee73cc4d83bd07829d6 /hosts/kay/modules/matrix-sliding-sync.nix
parent66c28201a4ca959757d7d81292a7980dbf5e08af (diff)
kay/matrix_sliding_sync: drop SYNCV3_LOG_LEVEL to warn
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}";
+ };
};
}