aplysia: transmission

This commit is contained in:
Gabriel Ebner 2017-08-05 10:43:25 +02:00
parent c077724191
commit c64b898dd8
1 changed files with 20 additions and 4 deletions

View File

@ -56,10 +56,26 @@
};
};
networking.firewall = {
# samba
allowedTCPPorts = [ 445 139 ];
allowedUDPPorts = [ 137 138 ];
services.transmission = {
enable = true;
settings = {
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
];
}