summaryrefslogtreecommitdiffstats
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
commitc6317e2789d1e524a0218363e5c7a03b22bfff20 (patch)
tree627ca10c353a8bb1f32e0a1c48dc1f1565808beb
parent817da6db6d791cc8f227711a8fb0266034e0f51f (diff)
m 2 rtorrent: initial config with rutorrent
-rw-r--r--2configs/rtorrent.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/2configs/rtorrent.nix b/2configs/rtorrent.nix
new file mode 100644
index 000000000..d024ded97
--- /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;
+ };
+}