summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2021-06-14 10:38:44 -0400
committerBen Sima <ben@bsima.me>2021-11-26 13:47:35 -0500
commitce1edea5da3318aea15dea0236aac421642a483e (patch)
tree86f58fc4305564718255b5ba024186bb2370ffe3
parent6e1f615b4b0e36b98d179dc4bcab79acdc200c56 (diff)
Enable eternal-terminal
-rw-r--r--Biz/Dev/Configuration.nix7
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;