diff --git a/hosts/architect/jellyseer.nix b/hosts/architect/jellyseer.nix deleted file mode 100644 index dc3c367..0000000 --- a/hosts/architect/jellyseer.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ config, pkgs, ... }: - -let - domain = "aumm-aumm.giugl.io"; -in -{ - services.jellyseerr = { - enable = true; - # package = pkgs.unstablePkgs.jellyseerr; - }; - - architect.vhost.${domain} = { - dnsInterfaces = [ "tailscale" "lan" ]; - locations."/" = { - port = config.services.jellyseerr.port; - allowLan = true; - - allow = [ - config.architect.networks.tailscale.net - ]; - }; - }; -} diff --git a/hosts/architect/prowlarr.nix b/hosts/architect/prowlarr.nix deleted file mode 100644 index 7939c30..0000000 --- a/hosts/architect/prowlarr.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ config, pkgs, ... }: - -let - domain = "htpro.giugl.io"; -in -{ - services.prowlarr = { - enable = true; - package = pkgs.unstablePkgs.prowlarr; - }; - - architect.vhost.${domain} = with config.architect.networks; { - dnsInterfaces = [ "tailscale" "lan" ]; - - locations."/" = { - port = 9696; - allowLan = true; - proxyWebsockets=true; - - allow = [ - tailscale.net - ]; - }; - - }; - - users.groups.media.members = [ "prowlarr" ]; -}