Upgrade postgres

This commit is contained in:
Sandro - 2023-01-06 23:56:02 +01:00
parent d5e612c680
commit 0f02e95746
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ config, ... }:
{ config, pkgs, ... }:
{
c3d2 = {
deployment.server = "server10";
@ -37,7 +37,11 @@
};
};
postgresql.settings.log_min_duration_statement = 50;
postgresql = {
package = pkgs.postgresql_15;
settings.log_min_duration_statement = 50;
upgrade.stopServices = [ "buzzrelay" ];
};
};
system.stateVersion = "22.11";