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 + ]; + }; + }; +}