snowflake/hosts/kariru/services/torrent.nix
2024-01-08 14:55:19 -05:00

35 lines
915 B
Nix

{config, ...}: {
sops.secrets.gluetun = {};
virtualisation.oci-containers.containers = {
gluetun = {
image = "qmcgaw/gluetun:v3.37.0";
hostname = "gluetun";
ports = [
"8888:8888/tcp" # HTTP proxy
"8388:8388/tcp" # Shadowsocks
"8388:8388/udp" # Shadowsocks
"8080:8080" #qb
"6881:6881" #qb
"6881:6881/udp" #qb
];
environmentFiles = [config.sops.secrets.gluetun.path];
extraOptions = ["--cap-add=NET_ADMIN"];
};
qbittorrent = {
image = "linuxserver/qbittorrent:4.6.2";
dependsOn = ["gluetun"];
environment = {
PUID = "1001";
PGID = "2001";
TZ = "Etc/UTC";
WEBUI_PORT = "8080";
};
volumes = [
"/home/notoh/qbittorrent/config:/config"
"/media/downloads:/downloads"
];
extraOptions = ["--network=container:gluetun"];
};
};
}