From fb78ebafba15685619cea1fd604e9fbdf33ec0b9 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Mon, 2 Sep 2024 12:33:36 +0300 Subject: [PATCH] host/home: change transmission configuration --- hosts/home/configuration.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/home/configuration.nix b/hosts/home/configuration.nix index c695a42..84bdc5c 100644 --- a/hosts/home/configuration.nix +++ b/hosts/home/configuration.nix @@ -24,7 +24,14 @@ virtualisation.docker.enable = true; # Torrent client - services.transmission.enable = true; + services.transmission = { + enable = true; + settings = { + rpc-bind-address = "192.168.7.10"; + rpc-port = 9091; + rpc-whitelist = "192.168.7.*"; + }; + }; services.ollama = { enable = true;