about summary refs log tree commit diff
path: root/nixos/modules/services/matrix
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2023-09-04 00:50:17 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2023-09-04 01:20:17 +0200
commit5fc70937a127092c48645d6f5061c0be9d45c69a (patch)
tree956ec59bb83842988131c954bca5cfae56319b04 /nixos/modules/services/matrix
parent035f90512492114e001f54438a47614d69da23e0 (diff)
nixos/mautrix-whatsapp: set default homeserver address
Without one the bridge won't start.
Note: localhost:8448 is the default listening address of matrix-synapse.
Diffstat (limited to 'nixos/modules/services/matrix')
-rw-r--r--nixos/modules/services/matrix/mautrix-whatsapp.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/matrix/mautrix-whatsapp.nix b/nixos/modules/services/matrix/mautrix-whatsapp.nix
index 78d0b616d992e..7e568733b7b7d 100644
--- a/nixos/modules/services/matrix/mautrix-whatsapp.nix
+++ b/nixos/modules/services/matrix/mautrix-whatsapp.nix
@@ -14,6 +14,7 @@
 
   mkDefaults = lib.mapAttrsRecursive (n: v: lib.mkDefault v);
   defaultConfig = {
+    homeserver.address = "http://localhost:8448";
     appservice = {
       hostname = "[::]";
       port = appservicePort;