From ec75c4451d89d0f464ea4ef380a4f599063f8cc1 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Tue, 10 Sep 2024 15:43:33 +0100 Subject: [PATCH] feat: added jellyseer --- hosts/architect/jellyseer.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 hosts/architect/jellyseer.nix diff --git a/hosts/architect/jellyseer.nix b/hosts/architect/jellyseer.nix new file mode 100644 index 0000000..ea41b39 --- /dev/null +++ b/hosts/architect/jellyseer.nix @@ -0,0 +1,23 @@ +{ config, pkgs, ... }: + +let + domain = "aumm-aumm.giugl.io"; +in +{ + services.jellyseerr = { + enable = true; + # package = pkgs.unstablePkgs.jellyseerr; + }; + + architect.vhost.${domain} = { + dnsInterfaces = [ "tailscale" ]; + locations."/" = { + port = config.services.jellyseerr.port; + allowLan = true; + + allow = [ + config.architect.networks.tailscale.net + ]; + }; + }; +}