Add missing link_local_ips and priority
This commit is contained in:
parent
b175f45613
commit
16f9888732
1 changed files with 9 additions and 1 deletions
|
@ -260,7 +260,7 @@ in
|
||||||
_out = mkOption {
|
_out = mkOption {
|
||||||
internal = true;
|
internal = true;
|
||||||
readOnly = true;
|
readOnly = true;
|
||||||
default = lib.mapAttrs (k: opt: opt.value) (lib.filterAttrs (_: opt: opt.isDefined) { inherit (options) aliases ipv4_address ipv6_address; });
|
default = lib.mapAttrs (k: opt: opt.value) (lib.filterAttrs (_: opt: opt.isDefined) { inherit (options) aliases ipv4_address ipv6_address link_local_ips priority; });
|
||||||
};
|
};
|
||||||
aliases = mkOption {
|
aliases = mkOption {
|
||||||
type = listOf str;
|
type = listOf str;
|
||||||
|
@ -275,6 +275,14 @@ in
|
||||||
type = str;
|
type = str;
|
||||||
description = serviceRef "ipv4_address-ipv6_address";
|
description = serviceRef "ipv4_address-ipv6_address";
|
||||||
};
|
};
|
||||||
|
link_local_ips = mkOption {
|
||||||
|
type = listOf str;
|
||||||
|
description = serviceRef "link_local_ips";
|
||||||
|
};
|
||||||
|
priority = mkOption {
|
||||||
|
type = int;
|
||||||
|
description = serviceRef "priority";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in a new issue