os/profiles/network/torrent.nix

25 lines
578 B
Nix
Raw Normal View History

2019-12-18 07:57:31 +00:00
{ config, lib, ... }:
let
inherit (config.services.qbittorrent) port;
inherit (lib) mkAfter;
2020-07-31 04:17:28 +00:00
in
{
2019-12-19 20:03:15 +00:00
services.qbittorrent = {
enable = true;
group = "media";
openFirewall = true;
2019-12-19 20:03:15 +00:00
};
users.groups.media.members = [ "qbittorrent" ];
2019-12-18 07:57:31 +00:00
environment.etc."xdg/qutebrowser/config.py".text = mkAfter ''
c.url.searchengines['to'] = 'https://torrentz2.eu/search?f={}'
config.bind(',t', """hint all spawn curl -X POST\
-F "urls={hint-url}"\
-F "sequentialDownload=true"\
http://localhost:${toString port}/api/v2/torrents/add"""
)
'';
}