blob: e66b273dc096d5bd7d2d041c0a1991618ec374de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{ stdenv
, nettools
, openresolv
, name
, connect ? true
, ipConf ? {}
, useDNS ? true
}:
with stdenv.lib;
{
"laeradhr" = {
inherit name;
debugLevel = 2;
hosts = ( import ./hosts/laeradhr.nix );
extraConfig = ''
${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.laeradhr <<EOF
domain yggdrasil
nameserver 10.141.1.1
EOF''}
'';
tinc-down = ''
#!${stdenv.shell}
${optionalString useDNS ''
${openresolv}/bin/resolvconf -d tinc.laeradhr
''}
'';
};
interfaceConfig = ipConf;
};
}
|