summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2018-09-17 00:31:21 +0200
committermakefu <github@syntax-fehler.de>2018-09-17 00:31:21 +0200
commitdf62d24f53455eb06de588b2758ff5e15f1b351d (patch)
tree3e3a737e14c748aa4efc890d3e2e375ea23e145e
parent5490d7b5a0c1806d0e474efc5c266c40aea9f0b4 (diff)
ma retroshare: prepare installation
retroshare somewhat sucks though ;)
-rw-r--r--2configs/retroshare.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/2configs/retroshare.nix b/2configs/retroshare.nix
new file mode 100644
index 000000000..4d2fc6af9
--- /dev/null
+++ b/2configs/retroshare.nix
@@ -0,0 +1,10 @@
+{ pkgs, ... }:
+let
+ port = 9024;
+in {
+ users.users.makefu.packages = [
+ pkgs.retroshare
+ ];
+ networking.firewall.allowedTCPPorts = [ port ];
+ networking.firewall.allowedUDPPorts = [ port ];
+}