summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/rtorrent.nix
blob: d024ded9705b56817b0ad846c5ccbc08f6ec8b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
_:
let
  listenPort = 60123;
  xml-port = 5000;
in {
  makefu.rtorrent = {
    enable = true;
    web.enable = true;
    xmlrpc = "localhost:${toString xml-port}";
    logLevel = "debug";
    inherit listenPort;
  };
}