forked from mirrors/nixpkgs
babeld module: updated example config
Previosuly the example config did feature the deprecated `wired` paramter. Wired can now be configured using the `type` parameter.
This commit is contained in:
parent
5d9073747a
commit
5feed06535
|
@ -51,7 +51,7 @@ in
|
|||
type = types.nullOr (types.attrsOf types.unspecified);
|
||||
example =
|
||||
{
|
||||
wired = true;
|
||||
type = "tunnel";
|
||||
"split-horizon" = true;
|
||||
};
|
||||
};
|
||||
|
@ -65,7 +65,7 @@ in
|
|||
type = types.attrsOf (types.attrsOf types.unspecified);
|
||||
example =
|
||||
{ enp0s2 =
|
||||
{ wired = true;
|
||||
{ type = "wired";
|
||||
"hello-interval" = 5;
|
||||
"split-horizon" = "auto";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue