aplysia: transmission

This commit is contained in:
Gabriel Ebner 2017-08-05 10:43:25 +02:00
parent c077724191
commit c64b898dd8

@ -56,10 +56,26 @@
}; };
}; };
networking.firewall = { services.transmission = {
# samba enable = true;
allowedTCPPorts = [ 445 139 ]; settings = {
allowedUDPPorts = [ 137 138 ]; download-dir = "/mnt/aplysia/torrents";
incomplete-dir = "/mnt/aplysia/torrents";
};
}; };
networking.firewall = {
allowedTCPPorts = [
445 139 # samba
];
allowedUDPPorts = [
137 138 # samba
];
};
environment.systemPackages = with pkgs; [
transmission
samba
];
} }