mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
removing qbit
This commit is contained in:
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@@ -231,10 +231,6 @@
|
|||||||
"pyopenweathermap",
|
"pyopenweathermap",
|
||||||
"pyownet",
|
"pyownet",
|
||||||
"pytest",
|
"pytest",
|
||||||
"qbit",
|
|
||||||
"qbittorrent",
|
|
||||||
"qbittorrentvpn",
|
|
||||||
"qbitvpn",
|
|
||||||
"quicksuggest",
|
"quicksuggest",
|
||||||
"radarr",
|
"radarr",
|
||||||
"readahead",
|
"readahead",
|
||||||
|
|||||||
@@ -1,47 +0,0 @@
|
|||||||
let
|
|
||||||
vars = import ../vars.nix;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
networking.firewall = {
|
|
||||||
allowedTCPPorts = [
|
|
||||||
6882
|
|
||||||
8081
|
|
||||||
8118
|
|
||||||
];
|
|
||||||
allowedUDPPorts = [ 6882 ];
|
|
||||||
};
|
|
||||||
virtualisation.oci-containers.containers.qbitvpn = {
|
|
||||||
image = "binhex/arch-qbittorrentvpn:5.0.3-1-01";
|
|
||||||
devices = [ "/dev/net/tun:/dev/net/tun" ];
|
|
||||||
extraOptions = [ "--cap-add=NET_ADMIN" ];
|
|
||||||
ports = [
|
|
||||||
"6882:6881"
|
|
||||||
"6882:6881/udp"
|
|
||||||
"8081:8081"
|
|
||||||
"8118:8118"
|
|
||||||
];
|
|
||||||
volumes = [
|
|
||||||
"${vars.docker_configs}/qbitvpn:/config"
|
|
||||||
"${vars.qbitvpn}:/data"
|
|
||||||
"${vars.qbitvpn_scratch}:/data/incomplete"
|
|
||||||
"/etc/localtime:/etc/localtime:ro"
|
|
||||||
];
|
|
||||||
environment = {
|
|
||||||
WEBUI_PORT = "8081";
|
|
||||||
PUID = "600";
|
|
||||||
PGID = "100";
|
|
||||||
VPN_ENABLED = "yes";
|
|
||||||
VPN_CLIENT = "openvpn";
|
|
||||||
STRICT_PORT_FORWARD = "yes";
|
|
||||||
ENABLE_PRIVOXY = "yes";
|
|
||||||
LAN_NETWORK = "192.168.90.0/24";
|
|
||||||
NAME_SERVERS = "1.1.1.1,1.0.0.1";
|
|
||||||
UMASK = "000";
|
|
||||||
DEBUG = "false";
|
|
||||||
DELUGE_DAEMON_LOG_LEVEL = "debug";
|
|
||||||
DELUGE_WEB_LOG_LEVEL = "debug";
|
|
||||||
};
|
|
||||||
environmentFiles = [ "${vars.secrets}/docker/qbitvpn" ];
|
|
||||||
autoStart = true;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -3,7 +3,6 @@ services = [
|
|||||||
"audiobookshelf",
|
"audiobookshelf",
|
||||||
"cloud_flare_tunnel",
|
"cloud_flare_tunnel",
|
||||||
"haproxy",
|
"haproxy",
|
||||||
"docker-qbitvpn",
|
|
||||||
"docker",
|
"docker",
|
||||||
"filebrowser",
|
"filebrowser",
|
||||||
"home-assistant",
|
"home-assistant",
|
||||||
|
|||||||
@@ -64,24 +64,12 @@ hourly = 12
|
|||||||
daily = 14
|
daily = 14
|
||||||
monthly = 2
|
monthly = 2
|
||||||
|
|
||||||
["scratch/qbitvpn"]
|
|
||||||
15_min = 0
|
|
||||||
hourly = 0
|
|
||||||
daily = 0
|
|
||||||
monthly = 0
|
|
||||||
|
|
||||||
["scratch/transmission"]
|
["scratch/transmission"]
|
||||||
15_min = 0
|
15_min = 0
|
||||||
hourly = 0
|
hourly = 0
|
||||||
daily = 0
|
daily = 0
|
||||||
monthly = 0
|
monthly = 0
|
||||||
|
|
||||||
["storage/qbitvpn"]
|
|
||||||
15_min = 0
|
|
||||||
hourly = 0
|
|
||||||
daily = 0
|
|
||||||
monthly = 0
|
|
||||||
|
|
||||||
["storage/transmission"]
|
["storage/transmission"]
|
||||||
15_min = 0
|
15_min = 0
|
||||||
hourly = 0
|
hourly = 0
|
||||||
|
|||||||
@@ -10,8 +10,6 @@ in
|
|||||||
docker_configs = "${zfs_media}/docker/configs";
|
docker_configs = "${zfs_media}/docker/configs";
|
||||||
home_assistant = "${zfs_media}/home_assistant";
|
home_assistant = "${zfs_media}/home_assistant";
|
||||||
notes = "${zfs_media}/notes";
|
notes = "${zfs_media}/notes";
|
||||||
qbitvpn = "${zfs_storage}/qbitvpn";
|
|
||||||
qbitvpn_scratch = "${zfs_scratch}/qbitvpn";
|
|
||||||
secrets = "${zfs_storage}/secrets";
|
secrets = "${zfs_storage}/secrets";
|
||||||
services = "${zfs_media}/services";
|
services = "${zfs_media}/services";
|
||||||
share = "${zfs_media}/share";
|
share = "${zfs_media}/share";
|
||||||
|
|||||||
Reference in New Issue
Block a user