lol

babeld module: updated example config

Previosuly the example config did feature the deprecated `wired`
paramter. Wired can now be configured using the `type` parameter.

+2 -2
+2 -2
nixos/modules/services/networking/babeld.nix
··· 51 51 type = types.nullOr (types.attrsOf types.unspecified); 52 52 example = 53 53 { 54 - wired = true; 54 + type = "tunnel"; 55 55 "split-horizon" = true; 56 56 }; 57 57 }; ··· 65 65 type = types.attrsOf (types.attrsOf types.unspecified); 66 66 example = 67 67 { enp0s2 = 68 - { wired = true; 68 + { type = "wired"; 69 69 "hello-interval" = 5; 70 70 "split-horizon" = "auto"; 71 71 };