20 lines
305 B
Nix
20 lines
305 B
Nix
{ config, lib, ... }:
|
|
|
|
let
|
|
domain = "htpro.giugl.io";
|
|
in
|
|
{
|
|
services.prowlarr.enable = true;
|
|
|
|
architect.vhost.${domain} = {
|
|
dnsInterfaces = [ "tailscale" "wireguard" ];
|
|
|
|
locations."/" = {
|
|
port = 9696;
|
|
allowLan = true;
|
|
};
|
|
};
|
|
|
|
users.groups.media.members = [ "prowlarr" ];
|
|
}
|