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;
enable_dnssec = true;
cache_optimistic = true;
bootstrap_dns = [
"9.9.9.10"
"149.112.112.10"
"2620:fe::10"
"2620:fe::fe:10"
];
};
statistics = {
enabled = true;
interval = "336h";
ignored = [
# i dont wanna see what people are watching
"youporn.com"
"pornhub.com"
"xvideos.com"
"onlyfans.com"
"fansly.com"
"xnxx.com"
];
};
};

View file

@ -1,4 +1,5 @@
{...}: {
networking.firewall.allowedTCPPorts = [9292];
imports = [
./restic.nix
./traefik.nix
@ -20,14 +21,31 @@
enable = true;
openFirewall = true;
};
virtualisation.oci-containers.containers.whisparr = {
image = "hotio/whisparr:nightly-7b7bdb9";
ports = ["6969:6969"];
volumes = [
"/var/lib/whisparr:/config"
"/stash:/data/stash"
"/media/downloads:/data/downloads"
];
extraOptions = ["--network=host"];
virtualisation.oci-containers.containers = {
whisparr = {
image = "hotio/whisparr:nightly-7b7bdb9";
ports = ["6969:6969"];
volumes = [
"/var/lib/whisparr:/config"
"/stash:/data/stash"
"/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 = {};
virtualisation.oci-containers.containers = {
gluetun = {
image = "qmcgaw/gluetun:pr-1742";
image = "qmcgaw/gluetun:v3.37.0";
hostname = "gluetun";
ports = [
"8888:8888/tcp" # HTTP proxy
"8388:8388/tcp" # Shadowsocks

View file

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