diff options
author | Soispha <soispha@vhack.eu> | 2023-07-27 10:05:20 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-27 10:05:20 +0200 |
commit | 30c0434571c975892dc09a65aaa8f3fd066017a9 (patch) | |
tree | 050826b5959ff963cccd359b851e2dba24a600e0 | |
parent | Fix(system/impermanence): Keycloak was actually postgresql (diff) | |
download | nixos-server-30c0434571c975892dc09a65aaa8f3fd066017a9.tar.gz nixos-server-30c0434571c975892dc09a65aaa8f3fd066017a9.zip |
Fix(system/services/matrix/bridges/m-wa): Correct postgresql uri
-rw-r--r-- | system/services/matrix/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/services/matrix/default.nix b/system/services/matrix/default.nix index 5fe9e9b..b0219ef 100644 --- a/system/services/matrix/default.nix +++ b/system/services/matrix/default.nix @@ -62,7 +62,7 @@ in { appservice = { database = { type = "postgres"; - uri = "postgres:///dbname?host=/var/run/postgresql"; + uri = "postgres:///matrix-synapse?host=/run/postgresql"; }; whatsapp = { # TODO: See https://github.com/tulir/whatsmeow/blob/efc632c008604016ddde63bfcfca8de4e5304da9/binary/proto/def.proto#L43-L64 for a list. |