summary refs log tree commit diff
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-07-04 16:43:59 +0200
committerRory& <root@rory.gay>2024-07-04 16:43:59 +0200
commit263d1529bb9afbd6b8b0eb88327edb3a78c24d16 (patch)
tree498285150733b7d571a2581570e548ee1318afd3
parentSet default nginx virtualhost (diff)
downloadRory-Open-Architecture-263d1529bb9afbd6b8b0eb88327edb3a78c24d16.tar.xz
Fix background worker name
-rw-r--r--host/Rory-nginx/services/matrix/synapse/workers/background.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/Rory-nginx/services/matrix/synapse/workers/background.nix b/host/Rory-nginx/services/matrix/synapse/workers/background.nix
index c97d647..501299a 100644
--- a/host/Rory-nginx/services/matrix/synapse/workers/background.nix
+++ b/host/Rory-nginx/services/matrix/synapse/workers/background.nix
@@ -12,7 +12,7 @@ in
   services.matrix-synapse = lib.mkIf cfg.enableBackgroundWorker {
     settings = {
       instance_map = {
-        appservice = {
+        background = {
           path = "/run/matrix-synapse/background.sock";
         };
       };
@@ -21,7 +21,7 @@ in
     };
 
     workers = {
-      appservice = {
+      background = {
         worker_app = "synapse.app.generic_worker";
         worker_listeners = [
           {