From 57009266e5efa3b941538c1d6761e5158e3a9959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Sun, 25 Aug 2024 14:13:35 +0200 Subject: [PATCH] fix(authelia): fix postgresql port reference --- services/authelia.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/authelia.nix b/services/authelia.nix index d572ab5..ff8e4c3 100644 --- a/services/authelia.nix +++ b/services/authelia.nix @@ -149,7 +149,7 @@ in }; storage.postgres = { host = "/run/postgresql"; - inherit (config.services.postgresql) port; + inherit (config.services.postgresql.settings) port; username = cfg.user; database = cfg.user; # password not used since it uses peer auth