mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
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);
|
type = types.nullOr (types.attrsOf types.unspecified);
|
||||||
example =
|
example =
|
||||||
{
|
{
|
||||||
wired = true;
|
type = "tunnel";
|
||||||
"split-horizon" = true;
|
"split-horizon" = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@ -65,7 +65,7 @@ in
|
|||||||
type = types.attrsOf (types.attrsOf types.unspecified);
|
type = types.attrsOf (types.attrsOf types.unspecified);
|
||||||
example =
|
example =
|
||||||
{ enp0s2 =
|
{ enp0s2 =
|
||||||
{ wired = true;
|
{ type = "wired";
|
||||||
"hello-interval" = 5;
|
"hello-interval" = 5;
|
||||||
"split-horizon" = "auto";
|
"split-horizon" = "auto";
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user