feat: upgrade postgres & add update script

This commit is contained in:
Felix Schröter 2024-12-08 18:45:10 +01:00
parent f5efff8653
commit 4858f01e31
Signed by: felschr
GPG key ID: 671E39E6744C807D
3 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
# Update `newPostgres` version, uncomment & run `upgrade-pg-cluster`. For details,
# see https://nixos.org/manual/nixos/stable/#module-services-postgres-upgrading
# imports = [ ./upgrade-pg-cluster.nix ];
services.postgresql.package = pkgs.postgresql_16;
}