Make uid names match
This commit is contained in:
parent
a122fda891
commit
7b04782680
|
@ -51,11 +51,11 @@ in {
|
||||||
type = int;
|
type = int;
|
||||||
default = 721;
|
default = 721;
|
||||||
};
|
};
|
||||||
authentik-postgres = mkOption {
|
postgres = mkOption {
|
||||||
type = int;
|
type = int;
|
||||||
default = 722;
|
default = 722;
|
||||||
};
|
};
|
||||||
authentik-redis = mkOption {
|
redis = mkOption {
|
||||||
type = int;
|
type = int;
|
||||||
default = 723;
|
default = 723;
|
||||||
};
|
};
|
||||||
|
@ -86,12 +86,12 @@ in {
|
||||||
authentik-postgres = {
|
authentik-postgres = {
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
group = "authentik";
|
group = "authentik";
|
||||||
uid = cfg.uids.authentik-postgres;
|
uid = cfg.uids.postgres;
|
||||||
};
|
};
|
||||||
authentik-redis = {
|
authentik-redis = {
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
group = "authentik";
|
group = "authentik";
|
||||||
uid = cfg.uids.authentik-redis;
|
uid = cfg.uids.redis;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue