22 lines
584 B
Nix
22 lines
584 B
Nix
|
{ config, lib, ... }:
|
||
|
let
|
||
|
inherit (config.services.qbittorrent) port;
|
||
|
inherit (lib) mkAfter;
|
||
|
in
|
||
|
{
|
||
|
imports = [ ../../modules/services/torrent/qbittorrent.nix ];
|
||
|
services.qbittorrent.enable = true;
|
||
|
users.users.nrd.extraGroups = [ "qbittorrent" ];
|
||
|
|
||
|
|
||
|
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"""
|
||
|
)
|
||
|
'';
|
||
|
}
|