From c6317e2789d1e524a0218363e5c7a03b22bfff20 Mon Sep 17 00:00:00 2001 From: makefu Date: Mon, 22 Aug 2016 18:42:03 +0200 Subject: [PATCH] m 2 rtorrent: initial config with rutorrent --- 2configs/rtorrent.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 2configs/rtorrent.nix diff --git a/2configs/rtorrent.nix b/2configs/rtorrent.nix new file mode 100644 index 0000000..d024ded --- /dev/null +++ b/2configs/rtorrent.nix @@ -0,0 +1,13 @@ +_: +let + listenPort = 60123; + xml-port = 5000; +in { + makefu.rtorrent = { + enable = true; + web.enable = true; + xmlrpc = "localhost:${toString xml-port}"; + logLevel = "debug"; + inherit listenPort; + }; +}