2023-12-04 00:34:56 +02:00
|
|
|
{ config, depot, ... }:
|
|
|
|
|
2023-06-05 21:44:41 +03:00
|
|
|
{
|
|
|
|
services.meet = {
|
|
|
|
nodes.host = [ "prophet" ];
|
|
|
|
nixos.host = ./host.nix;
|
|
|
|
};
|
2023-12-04 00:34:56 +02:00
|
|
|
|
|
|
|
dns.records.meet.target = map
|
|
|
|
(node: depot.hours.${node}.interfaces.primary.addrPublic)
|
|
|
|
config.services.meet.nodes.host;
|
2023-06-05 21:44:41 +03:00
|
|
|
}
|