From bd9e2b61dba2590941558a09d7a1f2346da3b580 Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Sat, 20 Dec 2025 20:30:49 +0000 Subject: [PATCH] psql --- profiles/postgresql.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/profiles/postgresql.nix b/profiles/postgresql.nix index 5b8977d..981189f 100644 --- a/profiles/postgresql.nix +++ b/profiles/postgresql.nix @@ -4,7 +4,8 @@ package = pkgs.postgresql_17; settings = { - wal_level = "replica"; + listen_addresses = "*"; + wal_level = "logical"; archive_mode = "on"; archive_command = "${pkgs.pgbackrest}/bin/pgbackrest --stanza=main archive-push %p"; max_wal_senders = 3;