17 lines
312 B
Nix
17 lines
312 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# https://mynixos.com/nixpkgs/options/services.transmission
|
|
|
|
|
|
services.transmission = {
|
|
enable = true;
|
|
package = pkgs.transmission_4;
|
|
openFirewall = true;
|
|
openPeerPorts = true;
|
|
openRPCPort = true;
|
|
settings = {
|
|
rpc-bind-address = "0.0.0.0";
|
|
};
|
|
};
|
|
|
|
}
|