Compare commits

..

No commits in common. "8b3c6ec6c8aff54db2ffd0007ec484d7c7e6e4b4" and "e1505bf9a1c9f5969e5169ef72c1a7895d0bb36a" have entirely different histories.

4 changed files with 3 additions and 31 deletions

View file

@ -101,8 +101,7 @@
"jellyseerr.internal.flake.sh" = "192.168.1.98";
"sonarr.internal.flake.sh" = "192.168.1.54";
"radarr.internal.flake.sh" = "192.168.1.54";
"readarr.internal.flake.sh" = "192.168.1.54";
"whisparr.internal.flake.sh" = "192.168.1.54";
"bazarr.internal.flake.sh" = "192.168.1.54";
"prowlarr.internal.flake.sh" = "192.168.1.54";
"stash.internal.flake.sh" = "192.168.1.98";
"nextcloud.internal.flake.sh" = "192.168.1.199";

View file

@ -22,11 +22,6 @@
fsType = "nfs";
};
fileSystems."/stash" = {
device = "192.168.1.199:/mnt/Sutoreji/stash";
fsType = "nfs";
};
swapDevices = [
{device = "/dev/disk/by-uuid/f28bad28-ae14-4aa7-85c5-47abe46bae56";}
];

View file

@ -1,4 +1,4 @@
{...}: {
_: {
imports = [
./traefik.nix
./torrent.nix
@ -19,18 +19,8 @@
enable = true;
openFirewall = true;
};
services.readarr = {
services.bazarr = {
enable = true;
openFirewall = true;
};
virtualisation.oci-containers.containers.whisparr = {
image = "hotio/whisparr";
ports = ["6969:6969"];
volumes = [
"/var/lib/whisparr:/config"
"/stash:/data/stash"
"/media/downloads:/data/downloads"
];
extraOptions = ["--network=host"];
};
}

View file

@ -20,16 +20,6 @@ _: {
entryPoints = ["web"];
service = "radarr";
};
readarr = {
rule = "Host(`readarr.internal.flake.sh`)";
entryPoints = ["web"];
service = "readarr";
};
whisparr = {
rule = "Host(`whisparr.internal.flake.sh`)";
entryPoints = ["web"];
service = "whisparr";
};
prowlarr = {
rule = "Host(`prowlarr.internal.flake.sh`)";
entrypoints = ["web"];
@ -39,8 +29,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";}];
};
};