Compare commits

...

3 commits

Author SHA1 Message Date
8ddb1e37b3
kariru: add sabnzbd
All checks were successful
flake check / check (push) Successful in 4m35s
fmt check / check (push) Successful in 1m5s
2024-01-08 14:55:47 -05:00
7dbf465aa8
gluetun: bump version 2024-01-08 14:55:19 -05:00
6d71ea612f
adguardhome: updates 2024-01-08 14:54:58 -05:00
4 changed files with 37 additions and 11 deletions

View file

@ -29,16 +29,24 @@
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,4 +1,5 @@
{...}: { {...}: {
networking.firewall.allowedTCPPorts = [9292];
imports = [ imports = [
./restic.nix ./restic.nix
./traefik.nix ./traefik.nix
@ -20,14 +21,31 @@
enable = true; enable = true;
openFirewall = true; openFirewall = true;
}; };
virtualisation.oci-containers.containers.whisparr = {
image = "hotio/whisparr:nightly-7b7bdb9"; virtualisation.oci-containers.containers = {
ports = ["6969:6969"]; whisparr = {
volumes = [ image = "hotio/whisparr:nightly-7b7bdb9";
"/var/lib/whisparr:/config" ports = ["6969:6969"];
"/stash:/data/stash" volumes = [
"/media/downloads:/data/downloads" "/var/lib/whisparr:/config"
]; "/stash:/data/stash"
extraOptions = ["--network=host"]; "/media/downloads:/data/downloads"
];
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,7 +2,8 @@
sops.secrets.gluetun = {}; sops.secrets.gluetun = {};
virtualisation.oci-containers.containers = { virtualisation.oci-containers.containers = {
gluetun = { gluetun = {
image = "qmcgaw/gluetun:pr-1742"; image = "qmcgaw/gluetun:v3.37.0";
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,7 +39,6 @@ _: {
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";}];
}; };