{ stdenv , nettools , openresolv , name , connect ? true , ipConf ? {} , useDNS ? true }: with stdenv.lib; { "yggdrasil" = { inherit name; debugLevel = 2; hosts = ( import ./hosts/yggdrasil.nix ); extraConfig = '' PingTimeout = 10 ${optionalString connect "ConnectTo = ymir"} ''; scripts = { tinc-up = '' #!${stdenv.shell} ${nettools}/bin/route add -net 10.141.1.0 netmask 255.255.255.0 gw 10.141.1.1 dev $INTERFACE metric 9999 ${optionalString useDNS '' ${openresolv}/bin/resolvconf -m 0 -a tinc.yggdrasil <