diff options
author | lassulus <lass@aidsballs.de> | 2016-08-24 08:49:16 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-08-24 08:49:16 +0200 |
commit | 662222f8c422ac8fa3daba8bc26ab5d5cd37fda1 (patch) | |
tree | 93d5629203803e06b6f9a60219ac7b0ce315399c /makefu/2configs/opentracker.nix | |
parent | a545159c08c6a748299111184ba5a34b40d7af67 (diff) | |
parent | 56e8681fd2d5a77fe539e5506b4b8f23bc0f4261 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/opentracker.nix')
-rw-r--r-- | makefu/2configs/opentracker.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/makefu/2configs/opentracker.nix b/makefu/2configs/opentracker.nix new file mode 100644 index 000000000..f98105625 --- /dev/null +++ b/makefu/2configs/opentracker.nix @@ -0,0 +1,16 @@ +{pkgs, ...}: + +let + daemon-port = 16969; + cfgfile = pkgs.writeText "opentracker-cfg" '' + ''; +in { + # Opentracker does not support local IPs (10.0.0.0/8 ) + makefu.opentracker = { + enable = true; + args = "-p ${toString daemon-port} -P ${toString daemon-port}"; + }; + networking.firewall.allowedTCPPorts = [ daemon-port ]; + networking.firewall.allowedUDPPorts = [ daemon-port ]; + +} |