From 96e0b2ccac3ca9fbb4fea5bbe26726434f924e92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Sun, 26 May 2024 16:09:32 +0200 Subject: [PATCH] fix: fix postgresql port reference --- services/immich.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/immich.nix b/services/immich.nix index ff406f0..887af57 100644 --- a/services/immich.nix +++ b/services/immich.nix @@ -24,7 +24,7 @@ let PGID = toString gid; NODE_ENV = "production"; DB_HOSTNAME = containersHost; - DB_PORT = toString config.services.postgresql.port; + DB_PORT = toString config.services.postgresql.settings.port; DB_USERNAME = dbuser; DB_DATABASE_NAME = dbname; REDIS_HOSTNAME = containersHost;