feat: added jellyseer
This commit is contained in:
parent
84b014fdac
commit
ec75c4451d
23
hosts/architect/jellyseer.nix
Normal file
23
hosts/architect/jellyseer.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user