From 5fc70937a127092c48645d6f5061c0be9d45c69a Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Mon, 4 Sep 2023 00:50:17 +0200 Subject: [PATCH] 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. --- nixos/modules/services/matrix/mautrix-whatsapp.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/matrix/mautrix-whatsapp.nix b/nixos/modules/services/matrix/mautrix-whatsapp.nix index 78d0b616d99..7e568733b7b 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;