2022-12-09 01:31:56 +01:00
|
|
|
with import ./lib;
|
|
|
|
{ config, pkgs, ... }: {
|
2016-07-20 17:20:47 +02:00
|
|
|
krebs.tinc.retiolum = {
|
2016-02-01 17:32:04 +01:00
|
|
|
enable = true;
|
|
|
|
connectTo = filter (ne config.krebs.build.host.name) [
|
2016-11-10 23:54:09 +01:00
|
|
|
"ni"
|
2016-02-01 17:32:04 +01:00
|
|
|
"prism"
|
2022-03-06 11:54:47 +01:00
|
|
|
"eve"
|
2016-02-01 17:32:04 +01:00
|
|
|
];
|
2017-08-01 12:15:45 +02:00
|
|
|
extraConfig = ''
|
|
|
|
LocalDiscovery = yes
|
|
|
|
'';
|
2016-06-30 01:05:21 +02:00
|
|
|
tincPackage = pkgs.tinc_pre;
|
2022-12-30 20:13:59 +01:00
|
|
|
tincUp = lib.mkIf config.systemd.network.enable "";
|
|
|
|
};
|
|
|
|
systemd.network.networks.retiolum = {
|
|
|
|
matchConfig.Name = "retiolum";
|
|
|
|
address = let
|
|
|
|
inherit (config.krebs.build.host.nets.retiolum) ip4 ip6;
|
|
|
|
in [
|
|
|
|
"${ip4.addr}/${toString ip4.prefixLength}"
|
|
|
|
"${ip6.addr}/${toString ip6.prefixLength}"
|
|
|
|
];
|
2016-02-01 17:32:04 +01:00
|
|
|
};
|
2016-06-30 00:52:35 +02:00
|
|
|
tv.iptables.input-internet-accept-tcp = singleton "tinc";
|
2016-06-30 01:09:39 +02:00
|
|
|
tv.iptables.input-internet-accept-udp = singleton "tinc";
|
2016-02-01 17:32:04 +01:00
|
|
|
}
|