2023-12-04 00:34:07 +02:00
|
|
|
{ depot, ... }:
|
|
|
|
|
|
|
|
{
|
2024-07-20 01:23:17 +03:00
|
|
|
services.fbi = {
|
|
|
|
nodes.host = [ "VEGAS" ];
|
|
|
|
nixos.host = ./host.nix;
|
|
|
|
};
|
|
|
|
|
2023-12-04 00:34:07 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|