diff options
author | lassulus <lassulus@lassul.us> | 2018-02-13 17:07:31 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2018-02-13 17:07:31 +0100 |
commit | 94a5ac9aeb1d11b5f37a8256db06a8e672cf3439 (patch) | |
tree | 40ee9cf0a0e23572a1400f243187f8dc0df0b8ed /lass/1systems | |
parent | 391fdd01b204402894718109d94c6c9590ccf644 (diff) |
l prism.r: add taskserver config
Diffstat (limited to 'lass/1systems')
-rw-r--r-- | lass/1systems/prism/config.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lass/1systems/prism/config.nix b/lass/1systems/prism/config.nix index eae8feb8f..b498d94ff 100644 --- a/lass/1systems/prism/config.nix +++ b/lass/1systems/prism/config.nix @@ -314,6 +314,18 @@ in { } <stockholm/lass/2configs/downloading.nix> <stockholm/lass/2configs/minecraft.nix> + { + services.taskserver = { + enable = true; + fqdn = "lassul.us"; + listenHost = "::"; + listenPort = 53589; + organisations.lass.users = [ "lass" "android" ]; + }; + krebs.iptables.tables.filter.INPUT.rules = [ + { predicate = "-p tcp --dport 53589"; target = "ACCEPT"; } + ]; + } ]; krebs.build.host = config.krebs.hosts.prism; |