12 lines
245 B
Nix
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;
|
|
};
|
|
}
|