ma retroshare: prepare installation

retroshare somewhat sucks though ;)
This commit is contained in:
makefu 2018-09-17 00:31:21 +02:00
parent 5490d7b5a0
commit df62d24f53

10
2configs/retroshare.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
let
port = 9024;
in {
users.users.makefu.packages = [
pkgs.retroshare
];
networking.firewall.allowedTCPPorts = [ port ];
networking.firewall.allowedUDPPorts = [ port ];
}