From afba2d5c2ac76add537cd00b40efdf6924716ead Mon Sep 17 00:00:00 2001 From: Martin Potier Date: Fri, 23 Jun 2017 23:44:07 +0200 Subject: [PATCH] Opening swarm port --- ipfs.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ipfs.nix b/ipfs.nix index 30ef9d4..64a49b1 100644 --- a/ipfs.nix +++ b/ipfs.nix @@ -1,6 +1,9 @@ { config, pkgs, ... }: { + networking.firewall.allowedTCPPorts = [ + 4001 # This is IPFS swarm port + ]; services.ipfs = { enable = true; enableGC = true;