stockholm/makefu/2configs/rtorrent.nix

14 lines
219 B
Nix
Raw Normal View History

_:
let
listenPort = 60123;
xml-port = 5000;
in {
makefu.rtorrent = {
enable = true;
web.enable = true;
xmlrpc = "localhost:${toString xml-port}";
logLevel = "debug";
inherit listenPort;
};
}