From d6c0eb23f9203682adf30640583395ccbcf12b12 Mon Sep 17 00:00:00 2001 From: tux Date: Thu, 27 Feb 2025 22:58:52 +0530 Subject: [PATCH] feat(alpha): enable trok --- hosts/alpha/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/hosts/alpha/default.nix b/hosts/alpha/default.nix index 07fa243..1bc3330 100644 --- a/hosts/alpha/default.nix +++ b/hosts/alpha/default.nix @@ -15,8 +15,12 @@ tux.services.openssh.enable = true; tux.services.openssh.ports = [23]; - tux.services.trok.enable = true; - tux.services.trok.openFirewall = true; + tux.services.trok = { + enable = true; + host = "0.0.0.0"; + port = 1337; + openFirewall = true; + }; tux.services.tfolio.enable = true; @@ -48,7 +52,7 @@ hostName = "alpha"; firewall = { - enable = true; + enable = false; allowedTCPPorts = [80 443 22]; }; };