feat: added jellyseer

This commit is contained in:
Giulio De Pasquale 2024-09-10 15:43:33 +01:00
parent 84b014fdac
commit ec75c4451d

View File

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