forked from CCCHH/nix-infra
June
0b433a2fa7
Also remove the upgrade script again. Bascially do steps 4 and 5 of the following section of the manual: https://nixos.org/manual/nixos/stable/#module-services-postgres-upgrading
8 lines
93 B
Nix
8 lines
93 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
services.postgresql = {
|
|
package = pkgs.postgresql_15;
|
|
};
|
|
}
|