From 43c75278e931037a6679995d52b1dd60e7b34259 Mon Sep 17 00:00:00 2001 From: lurchi Date: Sat, 6 Jul 2019 12:01:59 +0200 Subject: [PATCH] open gnunet port --- nixos/modules/gnunet/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/gnunet/default.nix b/nixos/modules/gnunet/default.nix index 8a1cd3c..5e5069b 100644 --- a/nixos/modules/gnunet/default.nix +++ b/nixos/modules/gnunet/default.nix @@ -92,6 +92,9 @@ in # so install them globally. environment.systemPackages = [ cfg.package ]; + networking.firewall.allowedTCPPorts = [ 2086 ]; + networking.firewall.allowedUDPPorts = [ 2086 ]; + security.wrappers = { gnunet-helper-vpn = { source = "${cfg.package}/lib/gnunet/libexec/gnunet-helper-vpn";