nixos/hosts/architect/prowlarr.nix
2023-10-21 15:00:58 +02:00

20 lines
293 B
Nix

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