diff options
author | Ben Sima <ben@bsima.me> | 2019-01-31 11:36:31 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-01-31 11:36:31 -0800 |
commit | bba1c85d96cc86f67383e0b758927a26a72f575e (patch) | |
tree | 80c667d518146549f536c85e8091d72893721b95 | |
parent | 13bcffad23305ae5baa31e5ab808934f2cac9906 (diff) |
Open some ports
-rw-r--r-- | configuration.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index 389f44f..a599aa9 100644 --- a/configuration.nix +++ b/configuration.nix @@ -4,6 +4,9 @@ nixpkgs.config.packageOverrides = pkgs: { ibb = import ./ibb/default.nix {}; }; + + networking.firewall.allowedTCPPorts = [ 22 80 443 ]; + services = { ibb.enable = true; |