diff options
author | lassulus <lassulus@lassul.us> | 2022-06-07 15:46:12 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-06-07 15:46:12 +0200 |
commit | b3786c3a74fce6a742649c37ab2ad1255f5864bf (patch) | |
tree | a5453da91d868781b2339722a4e7bf588993ac09 /makefu/2configs/torrent/rtorrent.nix | |
parent | e6f67aa910f78ecf75f3a47a0794497148c60c2b (diff) | |
parent | 53855cd2d0dadb159215c5ed12e6d0be02dca98b (diff) |
Merge remote-tracking branch 'gum/22.05'
Diffstat (limited to 'makefu/2configs/torrent/rtorrent.nix')
-rw-r--r-- | makefu/2configs/torrent/rtorrent.nix | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/makefu/2configs/torrent/rtorrent.nix b/makefu/2configs/torrent/rtorrent.nix index 79325bfc7..87ecc1e19 100644 --- a/makefu/2configs/torrent/rtorrent.nix +++ b/makefu/2configs/torrent/rtorrent.nix @@ -7,15 +7,17 @@ let daemon-port = 58846; dldir = config.makefu.dl-dir; in { - services.rtorrent.enable = true; - services.rtorrent.user = "rtorrent"; - services.rtorrent.group = "download"; - services.rtorrent.downloadDir = dldir; - services.rtorrent.configText = '' - schedule2 = watch_start, 10, 10, ((load.start, (cat, (cfg.watch), "/media/cloud/watch/*.torrent"))) - ''; - - services.rtorrent.openFirewall = true; + services.rtorrent = { + enable = true; + user = "rtorrent"; + port = peer-port; + openFirewall = true; + group = "download"; + downloadDir = dldir; + configText = '' + schedule2 = watch_start, 10, 10, ((load.start, (cat, (cfg.watch), "/media/cloud/watch/*.torrent"))) + ''; + }; systemd.services.flood = { wantedBy = [ "multi-user.target" ]; |