depot/cluster/services/fbi/default.nix
2023-12-04 23:33:20 +01:00

12 lines
245 B
Nix

{ depot, ... }:
{
dns.records = let
fbiAddr = [ depot.hours.VEGAS.interfaces.primary.addrPublic ];
in {
fbi-index.target = fbiAddr;
fbi-requests.target = fbiAddr;
radarr.target = fbiAddr;
sonarr.target = fbiAddr;
};
}