From d5b81255d05adf52f38579292e78acb32e344fee Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Tue, 10 Sep 2024 07:22:15 +0000 Subject: [PATCH] Set postgresql max_wal_size to 4GB --- configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/configuration.nix b/configuration.nix index e53effc..3f4a9c9 100644 --- a/configuration.nix +++ b/configuration.nix @@ -53,6 +53,7 @@ in { services.postgresql.settings = { max_connections = "512"; shared_buffers = "4096MB"; + max_wal_size = "4096MB"; }; services.zfs = {