From 7b0478268099c2a508f14af4664d8699b5af2123 Mon Sep 17 00:00:00 2001 From: niten Date: Mon, 28 Aug 2023 18:49:26 -0700 Subject: [PATCH] Make uid names match --- authentik-container.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/authentik-container.nix b/authentik-container.nix index ff42711..0f9b519 100644 --- a/authentik-container.nix +++ b/authentik-container.nix @@ -51,11 +51,11 @@ in { type = int; default = 721; }; - authentik-postgres = mkOption { + postgres = mkOption { type = int; default = 722; }; - authentik-redis = mkOption { + redis = mkOption { type = int; default = 723; }; @@ -86,12 +86,12 @@ in { authentik-postgres = { isSystemUser = true; group = "authentik"; - uid = cfg.uids.authentik-postgres; + uid = cfg.uids.postgres; }; authentik-redis = { isSystemUser = true; group = "authentik"; - uid = cfg.uids.authentik-redis; + uid = cfg.uids.redis; }; };