Make uid names match

This commit is contained in:
niten 2023-08-28 18:49:26 -07:00
parent a122fda891
commit 7b04782680
1 changed files with 4 additions and 4 deletions

View File

@ -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;
};
};