16 lines
301 B
Nix
16 lines
301 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.transmission = {
|
|
enable = true;
|
|
#home = "/mnt/storage/";
|
|
settings.rpc-port = 9091;
|
|
settings.rpc-bind-address = "0.0.0.0";
|
|
openRPCPort = true;
|
|
downloadDirPermissions = "770";
|
|
settings = {
|
|
rpc-whitelist = 10.0.0.0/24;
|
|
};
|
|
};
|
|
}
|