server: postgresql: update to 16

This commit is contained in:
2024-12-30 10:27:01 +01:00
parent d2d72a383a
commit 9d03e1167f
2 changed files with 35 additions and 1 deletions

View File

@@ -5,9 +5,10 @@
{ config, lib, pkgs, ... }:
{
imports = [ ./postgresql_upgrade.nix ];
services.postgresql = {
enable = true;
package = pkgs.postgresql_15;
package = pkgs.postgresql_16;
settings = {
max_connections = 200;
listen_addresses = "localhost";