forked from pub-solar/os
0837303bb5
* Import attrs of profiles automatically with `defaultImport`. * Refactor profiles to ensure all are functions returning a module. * Add a suites.nix with collections of profiles. * Add suites as `specialArgs` to modules. * Add suite import to NixOS host.
25 lines
578 B
Nix
25 lines
578 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (config.services.qbittorrent) port;
|
|
inherit (lib) mkAfter;
|
|
in
|
|
{
|
|
services.qbittorrent = {
|
|
enable = true;
|
|
group = "media";
|
|
openFirewall = true;
|
|
};
|
|
|
|
users.groups.media.members = [ "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"""
|
|
)
|
|
'';
|
|
}
|