ma retroshare: prepare installation

retroshare somewhat sucks though ;)
This commit is contained in:
makefu 2018-09-17 00:31:21 +02:00
parent 1424c4cdb6
commit 97012c2e20
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

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 ];
}