From ff0c139dc82c008c2a92b2ecea7b13568f5b8bce Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 13 Jan 2026 14:58:11 +0000 Subject: [PATCH] Use the new authentik config pattern for setting listening addresses --- modules/system/authentik.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/system/authentik.nix b/modules/system/authentik.nix index ec73a85..bcd5b85 100644 --- a/modules/system/authentik.nix +++ b/modules/system/authentik.nix @@ -23,14 +23,14 @@ with lib; from = "auth@corp.gleipnir.technology"; }; listen = { - listen_debug = "127.0.0.1:9900"; - listen_debug_py = "127.0.0.1:9901"; - listen_http = "127.0.0.1:10030"; - listen_https = "127.0.0.1:10031"; - listen_ldap = "127.0.0.1:3389"; - listen_ldaps = "127.0.0.1:6636"; - listen_radius = "127.0.0.1:1812"; - listen_metrics = "127.0.0.1:9300"; + debug = "127.0.0.1:9900"; + debug_py = "127.0.0.1:9901"; + http = "127.0.0.1:10030"; + https = "127.0.0.1:10031"; + ldap = "127.0.0.1:3389"; + ldaps = "127.0.0.1:6636"; + radius = "127.0.0.1:1812"; + metrics = "127.0.0.1:9300"; }; }; };