From 42aaa9eaea143be90739a97a1d6ccb1f7cc54e73 Mon Sep 17 00:00:00 2001 From: notohh Date: Thu, 4 Apr 2024 18:15:25 -0400 Subject: [PATCH] postgresql: move port to settings --- hosts/arashi/services/postgresql.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/arashi/services/postgresql.nix b/hosts/arashi/services/postgresql.nix index 3062006..e2f2fd0 100644 --- a/hosts/arashi/services/postgresql.nix +++ b/hosts/arashi/services/postgresql.nix @@ -8,9 +8,9 @@ enable = true; enableTCPIP = true; package = pkgs.postgresql_14; - port = 5432; settings = { listen_addresses = lib.mkForce "*"; + port = 5432; max_connections = "300"; shared_buffers = "80MB"; };