nix-infra/config/hosts/netbox/postgresql.nix
June 0b433a2fa7 Set PostgreSQL package to PostgreSQL 15 for netbox host
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
2023-12-06 01:11:25 +01:00

8 lines
93 B
Nix

{ pkgs, config, ... }:
{
services.postgresql = {
package = pkgs.postgresql_15;
};
}