From 71c97ab7a54f9a51939fd53088da3c8bc6fef212 Mon Sep 17 00:00:00 2001 From: Amanda Graven Date: Fri, 8 Dec 2023 14:41:08 +0100 Subject: [PATCH] Upgrade grondahl to postgres 16 --- config/hosts/grondahl/services/postgres.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/hosts/grondahl/services/postgres.nix b/config/hosts/grondahl/services/postgres.nix index 30f4f83..7b0e3ee 100644 --- a/config/hosts/grondahl/services/postgres.nix +++ b/config/hosts/grondahl/services/postgres.nix @@ -2,7 +2,7 @@ { services.postgresql = { enable = true; - package = pkgs.postgresql_13; + package = pkgs.postgresql_16; extraPlugins = with config.services.postgresql.package.pkgs; [ postgis ];