summaryrefslogtreecommitdiffstats
path: root/tv/2configs/retiolum.nix
blob: de77de38195c3d6a996b69dd6ec2fb4c88305bc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
with import ./lib;
{ config, pkgs, ... }: {
  krebs.tinc.retiolum = {
    enable = true;
    connectTo = filter (ne config.krebs.build.host.name) [
      "ni"
      "prism"
      "eve"
    ];
    extraConfig = ''
      LocalDiscovery = yes
    '';
    tincPackage = pkgs.tinc_pre;
  };
  tv.iptables.input-internet-accept-tcp = singleton "tinc";
  tv.iptables.input-internet-accept-udp = singleton "tinc";
}