Define ports

This commit is contained in:
niten 2023-08-28 18:36:49 -07:00
parent 95f303e443
commit b92948906e
1 changed files with 11 additions and 0 deletions

View File

@ -33,6 +33,17 @@ in {
redis = mkOption { type = str; };
};
ports = {
http = mkOption {
type = port;
default = 5030;
};
https = mkOption {
type = port;
default = 5031;
};
};
uids = {
authentik = mkOption {
type = int;