stockholm/makefu/2configs/retroshare.nix
makefu 97012c2e20
ma retroshare: prepare installation
retroshare somewhat sucks though ;)
2018-09-17 00:31:21 +02:00

11 lines
200 B
Nix

{ pkgs, ... }:
let
port = 9024;
in {
users.users.makefu.packages = [
pkgs.retroshare
];
networking.firewall.allowedTCPPorts = [ port ];
networking.firewall.allowedUDPPorts = [ port ];
}