summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2016-08-22 18:42:03 +0200
committermakefu <github@syntax-fehler.de>2016-08-22 18:42:03 +0200
commit3853da411a98002388ca03c8c730db768b89f91f (patch)
treeeee6d8dc91cd7373cc87cf321b7b34d467d2d237 /makefu
parent5557ae25660e3934582050865e8dcfc0f93f5856 (diff)
m 2 rtorrent: initial config with rutorrent
Diffstat (limited to 'makefu')
-rw-r--r--makefu/2configs/rtorrent.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/makefu/2configs/rtorrent.nix b/makefu/2configs/rtorrent.nix
new file mode 100644
index 00000000..d024ded9
--- /dev/null
+++ b/makefu/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;
+ };
+}