summaryrefslogtreecommitdiffstats
path: root/mb/2configs/retiolum.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2019-11-27 09:53:41 +0100
committertv <tv@krebsco.de>2019-11-27 09:53:41 +0100
commit16a023af18eddaaa603ef40a42a0f2a247814446 (patch)
tree6f3ebd85c2bff1036dfa8fde04a7ffd8142076db /mb/2configs/retiolum.nix
parentdc75a54cfb8b431e9ea43be6dc7207fd77f54c2f (diff)
parentaa341e428a489133061a3e898ed6a93a5c290b54 (diff)
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'mb/2configs/retiolum.nix')
-rw-r--r--mb/2configs/retiolum.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/mb/2configs/retiolum.nix b/mb/2configs/retiolum.nix
deleted file mode 100644
index 5a87d52af..000000000
--- a/mb/2configs/retiolum.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ config, pkgs, ... }:
-
-{
-
- krebs.iptables = {
- tables = {
- filter.INPUT.rules = let
- tincport = toString config.krebs.build.host.nets.retiolum.tinc.port;
- in [
- { predicate = "-p tcp --dport ${tincport}"; target = "ACCEPT"; }
- { predicate = "-p udp --dport ${tincport}"; target = "ACCEPT"; }
- ];
- };
- };
-
- krebs.tinc.retiolum = {
- enableLegacy = true;
- enable = true;
- connectTo = [
- "prism"
- "gum"
- "ni"
- ];
- };
-
- nixpkgs.config.packageOverrides = pkgs: {
- tinc = pkgs.tinc_pre;
- };
-
- environment.systemPackages = [
- pkgs.tinc
- ];
-}