13 lines
210 B
Nix
13 lines
210 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;
|
|
|
|
};
|
|
}
|