From a0331deac34bfa7ace3eb4802e79434d88316cd0 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Sat, 26 Apr 2025 19:43:46 +0100 Subject: [PATCH] delete --- hosts/architect/jellyseer.nix | 23 ----------------------- hosts/architect/prowlarr.nix | 28 ---------------------------- 2 files changed, 51 deletions(-) delete mode 100644 hosts/architect/jellyseer.nix delete mode 100644 hosts/architect/prowlarr.nix 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" ]; -}