nixos/hosts/architect/prowlarr.nix
Giulio De Pasquale 2f43745162 Move to vhost
2023-06-05 03:10:13 +02:00

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