forked from CCCHH/nix-infra
June
49f7ed8d60
The script is a modified version of the script shown in the PostgreSQL Upgrading section of the NixOS manual. Our version is for upgrading PostgreSQL 14 to 15. Basically do steps 1-3 of the section. Link to the section: https://nixos.org/manual/nixos/stable/#module-services-postgres-upgrading
12 lines
146 B
Nix
12 lines
146 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./configuration.nix
|
|
./netbox.nix
|
|
./networking.nix
|
|
./nginx.nix
|
|
./postgresql.nix
|
|
];
|
|
}
|