blob: efa4403ee87a5b4593906899c1062b9a6e469f50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# This module configures the my torrenting setup. It uses qBittorrent over a VPN.
{
pkgs,
options,
config,
...
}: let
downloadPath = "/srv/media/";
in {
imports = [
./wireguard.nix
./reverse-proxy.nix
];
# Configure the actual qBittorrent service.
services.qbittorrent = {
enable = true;
settings = {
BitTorrent = {
# Use the specified download path for finished torrents.
"Session\\DefaultSavePath" = downloadPath;
"Session\\TempPath" = "${config.services.qbittorrent.profile}/qBittorrent/temp";
"Session\\TempPathEnabled" = true;
};
Preferences = {
# Again??
"Downloads\\SavePath" = downloadPath;
};
};
};
# WARNING: Jellyfin has been manually configured to serve from the correct download path.
services.jellyfin.enable = true;
# Create the directory to which media will be downloaded. This will be used
# by qBittorent to hold files and Jellyfin will serve from it.
systemd.tmpfiles.rules = let
user = config.services.qbittorrent.user;
group = config.services.qbittorrent.group;
in [
"d ${downloadPath} 0755 ${user} ${group}"
];
}
|