summary refs log tree commit diff
path: root/host/Rory-nginx/services/matrix/synapse/workers/pusher.nix
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-07-01 18:49:36 +0200
committerRory& <root@rory.gay>2024-07-04 14:45:02 +0200
commitf5c02224861c5d11c318ff25bd2a8fd551ade11a (patch)
tree7bc124833005f8a16fdaab2d3f6a502e60f93360 /host/Rory-nginx/services/matrix/synapse/workers/pusher.nix
parentSynapse changes for testing (diff)
downloadRory-Open-Architecture-f5c02224861c5d11c318ff25bd2a8fd551ade11a.tar.xz
Move synapse sockets to /run/matrix-synapse instead of /run/synapse
Diffstat (limited to 'host/Rory-nginx/services/matrix/synapse/workers/pusher.nix')
-rw-r--r--host/Rory-nginx/services/matrix/synapse/workers/pusher.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/Rory-nginx/services/matrix/synapse/workers/pusher.nix b/host/Rory-nginx/services/matrix/synapse/workers/pusher.nix
index 559d42c..037cf55 100644
--- a/host/Rory-nginx/services/matrix/synapse/workers/pusher.nix
+++ b/host/Rory-nginx/services/matrix/synapse/workers/pusher.nix
@@ -10,7 +10,7 @@ in
         instance_map = lib.listToAttrs (lib.map (index: {
           name = "pusher-${toString index}";
           value = {
-            path = "/run/synapse/pusher-${toString index}.sock";
+            path = "/run/matrix-synapse/pusher-${toString index}.sock";
           };
         }) pushers);