14 lines
No EOL
249 B
Nix
Executable file
14 lines
No EOL
249 B
Nix
Executable file
{ config , ... }:
|
|
|
|
{
|
|
services.transmission = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
openRPCPort = true;
|
|
settings = {
|
|
incomplete-dir-enabled = false;
|
|
rpc-bind-address = "0.0.0.0";
|
|
rpc-whitelist = "127.0.0.1,192.168.0.16*";
|
|
};
|
|
};
|
|
} |