notohh
fa909a2d6f
All checks were successful
ci/woodpecker/cron/flake-lock-update Pipeline was successful
firefox: update betterfox tsuki: add bolt launcher stylix: disable zellij yuki: remove twitch miner yuki: remove twitch miner pgres: init ec db yuki: bump docker versions tsuki: disable waydroid default: disable helix default: update default editor firefox: edit extensions torrent: bump qbit services: remove wlsunset
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{config, ...}: {
|
|
sops.secrets.gluetun = {};
|
|
virtualisation.oci-containers.containers = {
|
|
gluetun = {
|
|
image = "qmcgaw/gluetun@sha256:5522794f5cce6d84bc7f06b1e3a3b836ede9100c64aec94543cb503bb2ecb72f"; #v3.38
|
|
hostname = "gluetun";
|
|
ports = [
|
|
"8000:8000/tcp" # HTTP control server
|
|
"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@sha256:d01b1df556154862eca982d0f2c420073e2e2959c309951fbfddd25525ea28ce"; # v5.0.0
|
|
dependsOn = ["gluetun"];
|
|
environment = {
|
|
PUID = "1001";
|
|
PGID = "2001";
|
|
TZ = "Etc/UTC";
|
|
WEBUI_PORT = "8080";
|
|
};
|
|
volumes = [
|
|
"/home/notoh/qbittorrent/config:/config"
|
|
"/media/downloads:/downloads"
|
|
"/media/incomplete-downloads:/incomplete-downloads"
|
|
];
|
|
extraOptions = ["--network=container:gluetun"];
|
|
};
|
|
};
|
|
}
|