nixos-knossos/services/transmission.nix

18 lines
312 B
Nix
Raw Normal View History

2025-04-10 13:45:57 +08:00
{ config, pkgs, ... }:
{
# https://mynixos.com/nixpkgs/options/services.transmission
services.transmission = {
2025-04-10 13:45:57 +08:00
enable = true;
package = pkgs.transmission_4;
2025-04-10 13:45:57 +08:00
openFirewall = true;
openPeerPorts = true;
openRPCPort = true;
settings = {
rpc-bind-address = "0.0.0.0";
};
2025-04-10 13:45:57 +08:00
};
}