diff --git a/systems/jeeves/docker/prowlarr.nix b/systems/jeeves/docker/prowlarr.nix deleted file mode 100644 index ab87eb1..0000000 --- a/systems/jeeves/docker/prowlarr.nix +++ /dev/null @@ -1,17 +0,0 @@ -let - vars = import ../vars.nix; -in -{ - networking.firewall.allowedTCPPorts = [ 9696 ]; - virtualisation.oci-containers.containers.prowlarr = { - image = "ghcr.io/linuxserver/prowlarr:latest"; - ports = [ "9696:9696" ]; - environment = { - PUID = "600"; - PGID = "100"; - TZ = "America/New_York"; - }; - volumes = [ "${vars.media_docker_configs}/prowlarr:/config" ]; - autoStart = true; - }; -} diff --git a/systems/jeeves/docker/sonarr.nix b/systems/jeeves/docker/sonarr.nix deleted file mode 100644 index 278ee36..0000000 --- a/systems/jeeves/docker/sonarr.nix +++ /dev/null @@ -1,21 +0,0 @@ -let - vars = import ../vars.nix; -in -{ - networking.firewall.allowedTCPPorts = [ 9696 8989 ]; - virtualisation.oci-containers.containers.sonarr = { - image = "ghcr.io/linuxserver/sonarr:latest"; - ports = [ "8989:8989" ]; - environment = { - PUID = "600"; - PGID = "100"; - TZ = "America/New_York"; - }; - volumes = [ - "${vars.media_docker_configs}/sonarr:/config" - "${vars.storage_plex}/tv:/tv" - "${vars.torrenting_qbitvpn}:/data" - ]; - autoStart = true; - }; -}