From c259a93c7aed09810233b4986602f6bc9e133972 Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Sun, 8 Feb 2026 22:41:54 -0600 Subject: [PATCH] Switch Immich container to PostgreSQL 16 --- hosts/h001/containers/immich.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/h001/containers/immich.nix b/hosts/h001/containers/immich.nix index 4063495a..16481028 100644 --- a/hosts/h001/containers/immich.nix +++ b/hosts/h001/containers/immich.nix @@ -32,7 +32,7 @@ let { host = "${hostVarLibDir}/postgres"; # Adjust based on container postgres data dir - container = "/var/lib/postgresql/17"; + container = "/var/lib/postgresql/16"; user = "postgres"; uid = config.ids.uids.postgres; gid = config.ids.gids.postgres; @@ -171,7 +171,7 @@ in services.postgresql = { enable = true; - package = pkgs.postgresql_17.withPackages (ps: [ ps.pgvecto-rs ]); + package = pkgs.postgresql_16.withPackages (ps: [ ps.pgvecto-rs ]); enableJIT = true; authentication = '' local all all trust