diff options
author | Ben Sima <ben@bsima.me> | 2022-03-03 14:46:27 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-03-05 12:30:23 -0500 |
commit | d473c5038fcd1857e89f103d410751207536039a (patch) | |
tree | 48805b51c65444a852d0eed7d92eb39be3e6f0e1 | |
parent | a89e6a711bd370398f6a8f2d9b8c99adfa831029 (diff) |
add barrier
-rw-r--r-- | lib/packages.nix | 1 | ||||
-rw-r--r-- | machines/helium.nix | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/packages.nix b/lib/packages.nix index c074b27..72ea055 100644 --- a/lib/packages.nix +++ b/lib/packages.nix @@ -61,6 +61,7 @@ in { asciinema aspellDicts.en bat + barrier bc cabal2nix cloc diff --git a/machines/helium.nix b/machines/helium.nix index 44c317d..96f2eda 100644 --- a/machines/helium.nix +++ b/machines/helium.nix @@ -32,6 +32,9 @@ in { networking.hostName = "helium"; networking.networkmanager.enable = true; + networking.firewall.allowedTCPPorts = [ + 24800 # barrier + ]; time.timeZone = "America/New_York"; |