1
0
Fork 0
forked from DGNum/lab-infra

fix: empty defaults for meta

This commit is contained in:
catvayor 2025-01-14 17:44:49 +01:00
parent dd6f2f913e
commit a389f94078
Signed by untrusted user: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -124,6 +124,7 @@ in
external = mkOption { external = mkOption {
type = attrsOf (listOf str); type = attrsOf (listOf str);
default = { };
description = '' description = ''
External services used by the DGNum organization. External services used by the DGNum organization.
''; '';
@ -149,6 +150,7 @@ in
}; };
}; };
}); });
default = { };
description = '' description = ''
Administrator access of the different DGNum services, Administrator access of the different DGNum services,
it is mainly indicative as most services cannot configure this statically. it is mainly indicative as most services cannot configure this statically.
@ -336,6 +338,7 @@ in
netbirdIp = mkOption { netbirdIp = mkOption {
type = nullOr str; type = nullOr str;
default = null;
description = '' description = ''
IP address of the node in the netbird network. IP address of the node in the netbird network.
''; '';