matemat: bump postgres

This commit is contained in:
Sandro - 2023-09-26 21:10:21 +02:00
parent edfa190faf
commit 08ae6a32bc
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
3 changed files with 8 additions and 8 deletions

View File

@ -234,7 +234,7 @@
postgresql.upgrade = { postgresql.upgrade = {
extraArgs = [ "--link" ] extraArgs = [ "--link" ]
++ lib.optional (config ? microvm) "--jobs=${toString config.microvm.vcpu}"; ++ lib.optional (config ? microvm) "--jobs=${toString config.microvm.vcpu}";
newPackage = pkgs.postgresql_15; newPackage = pkgs.postgresql_16;
stopServices = lib.optional config.services.nginx.enable "nginx" stopServices = lib.optional config.services.nginx.enable "nginx"
++ lib.optional config.c3d2.hq.statistics.enable "collectd"; ++ lib.optional config.c3d2.hq.statistics.enable "collectd";
}; };

View File

@ -362,11 +362,11 @@
}, },
"nixos": { "nixos": {
"locked": { "locked": {
"lastModified": 1695676903, "lastModified": 1695751346,
"narHash": "sha256-REo95tubH/Mbb/7zXgXc6NDgievsXUrh+zwEwI2LbIY=", "narHash": "sha256-f0PTyEjEkCMMsQNdkVETU82FmXjQbAh2952N9gCH7GE=",
"owner": "SuperSandro2000", "owner": "SuperSandro2000",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "bd6b8bfc20ee08b19fec713d9830bbceea9f47a0", "rev": "a2da31c854fb8cfffee8121bd57c9315fc507a7c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -398,11 +398,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1695137600, "lastModified": 1695752337,
"narHash": "sha256-+3ZveXokwX3BzaMVYFbUhhXIGsStm5POUmh54x8ANyI=", "narHash": "sha256-Vx8ZuDz5NgcPdQvi47/NuFeraE0akraGpdSQPZ9Eyr4=",
"owner": "SuperSandro2000", "owner": "SuperSandro2000",
"repo": "nixos-modules", "repo": "nixos-modules",
"rev": "72e122cc74bcc5c14d4c4d8733c40f64c483f75f", "rev": "672f5faa9941bdf872f917941a3e5b4f22839705",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -25,7 +25,7 @@
}; };
postgresql = { postgresql = {
package = pkgs.postgresql_15; package = pkgs.postgresql_16;
upgrade.stopServices = [ "yammat" ]; upgrade.stopServices = [ "yammat" ];
}; };