diff options
-rw-r--r-- | Biz/Dev/Configuration.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Biz/Dev/Configuration.nix b/Biz/Dev/Configuration.nix index 4539547..ecc9a46 100644 --- a/Biz/Dev/Configuration.nix +++ b/Biz/Dev/Configuration.nix @@ -12,6 +12,7 @@ let mpd = 6600; mpd-stream = 8097; tor = 143; + et = 2022; }; in { networking = { @@ -31,12 +32,13 @@ in { ports.mpd ports.mpd-stream ports.tor + ports.et ]; allowedTCPPortRanges = [ ports.torrents ports.httpdev ]; - allowedUDPPorts = [ ports.murmur ]; + allowedUDPPorts = [ ports.murmur ports.et ]; allowedUDPPortRanges = [ ports.torrents ]; @@ -126,6 +128,9 @@ in { host = "0.0.0.0"; }; + eternal-terminal = { + enable = true; + }; tor = { enable = true; client.enable = true; |