From 170fb2a9800a6f5227915ee72a2a8d1906cf86e4 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 22 Jun 2026 18:35:55 +0900 Subject: [PATCH] bicep/synapse: fix `dbname` option --- hosts/bicep/services/matrix/synapse.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/bicep/services/matrix/synapse.nix b/hosts/bicep/services/matrix/synapse.nix index c9a055d..230aa09 100644 --- a/hosts/bicep/services/matrix/synapse.nix +++ b/hosts/bicep/services/matrix/synapse.nix @@ -74,7 +74,7 @@ in { name = "psycopg2"; args = { host = "/var/run/postgresql"; - dbname = "synapse"; + database = "synapse"; user = "matrix-synapse"; cp_min = 1; cp_max = 5;