Compare commits

..

No commits in common. "8ddb1e37b362140bb1d04ef88f22f9c706dbd894" and "979ea64f9a98687453ed04c9a177df112ab15e06" have entirely different histories.

4 changed files with 11 additions and 37 deletions

View file

@ -29,24 +29,16 @@
upstream_dns_file = config.sops.secrets.nextdns.path; upstream_dns_file = config.sops.secrets.nextdns.path;
enable_dnssec = true; enable_dnssec = true;
cache_optimistic = true; cache_optimistic = true;
bootstrap_dns = [
"9.9.9.10"
"149.112.112.10"
"2620:fe::10"
"2620:fe::fe:10"
];
}; };
statistics = { statistics = {
enabled = true; enabled = true;
interval = "336h"; interval = "336h";
ignored = [ ignored = [
# i dont wanna see what people are watching
"youporn.com" "youporn.com"
"pornhub.com" "pornhub.com"
"xvideos.com" "xvideos.com"
"onlyfans.com" "onlyfans.com"
"fansly.com" "fansly.com"
"xnxx.com"
]; ];
}; };
}; };

View file

@ -1,5 +1,4 @@
{...}: { {...}: {
networking.firewall.allowedTCPPorts = [9292];
imports = [ imports = [
./restic.nix ./restic.nix
./traefik.nix ./traefik.nix
@ -21,31 +20,14 @@
enable = true; enable = true;
openFirewall = true; openFirewall = true;
}; };
virtualisation.oci-containers.containers.whisparr = {
virtualisation.oci-containers.containers = { image = "hotio/whisparr:nightly-7b7bdb9";
whisparr = { ports = ["6969:6969"];
image = "hotio/whisparr:nightly-7b7bdb9"; volumes = [
ports = ["6969:6969"]; "/var/lib/whisparr:/config"
volumes = [ "/stash:/data/stash"
"/var/lib/whisparr:/config" "/media/downloads:/data/downloads"
"/stash:/data/stash" ];
"/media/downloads:/data/downloads" extraOptions = ["--network=host"];
];
extraOptions = ["--network=host"];
};
sabnzbd = {
image = "linuxserver/sabnzbd";
ports = ["9292:9292"];
environment = {
PUID = "1000";
PGID = "1000";
};
volumes = [
"/var/lib/sabnzbd:/config"
"/media/downloads:/media/downloads"
"/media/incomplete-downloads:/media/incomplete-downloads"
];
extraOptions = ["--network=host"];
};
}; };
} }

View file

@ -2,8 +2,7 @@
sops.secrets.gluetun = {}; sops.secrets.gluetun = {};
virtualisation.oci-containers.containers = { virtualisation.oci-containers.containers = {
gluetun = { gluetun = {
image = "qmcgaw/gluetun:v3.37.0"; image = "qmcgaw/gluetun:pr-1742";
hostname = "gluetun";
ports = [ ports = [
"8888:8888/tcp" # HTTP proxy "8888:8888/tcp" # HTTP proxy
"8388:8388/tcp" # Shadowsocks "8388:8388/tcp" # Shadowsocks

View file

@ -39,6 +39,7 @@ _: {
services = { services = {
sonarr.loadBalancer.servers = [{url = "http://localhost:8989";}]; sonarr.loadBalancer.servers = [{url = "http://localhost:8989";}];
radarr.loadBalancer.servers = [{url = "http://localhost:7878";}]; radarr.loadBalancer.servers = [{url = "http://localhost:7878";}];
readarr.loadBalancer.servers = [{url = "http://localhost:8787";}];
whisparr.loadBalancer.servers = [{url = "http://localhost:6969";}]; whisparr.loadBalancer.servers = [{url = "http://localhost:6969";}];
prowlarr.loadBalancer.servers = [{url = "http://localhost:9696";}]; prowlarr.loadBalancer.servers = [{url = "http://localhost:9696";}];
}; };