Upgrade postgres

This commit is contained in:
Sandro - 2023-01-07 01:09:28 +01:00
parent a12057a2a1
commit 983f5687ae
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,6 @@ in
services.postgresql = {
enable = true;
package = pkgs.postgresql_13;
ensureDatabases = [
"prosody"
];
@ -68,6 +67,8 @@ in
"DATABASE prosody" = "ALL PRIVILEGES";
};
} ];
package = pkgs.postgresql_15;
upgrade.stopServices = [ "prosody" ];
};
#TODO: txt records?
services.prosody = {