From 2ed6f92ed89be21d96add29a1679e461450d2a1b Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Mon, 24 Jun 2024 21:00:46 +0200 Subject: [PATCH] postgres: bump max connections count --- services/postgres/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/postgres/default.nix b/services/postgres/default.nix index 4f5985f..32e49a5 100644 --- a/services/postgres/default.nix +++ b/services/postgres/default.nix @@ -43,6 +43,10 @@ in { authentication = '' local hydra all ident map=hydra-users ''; + + settings = { + max_connections = 500; + }; }; }; }