depot/cluster/services/search/default.nix
2023-09-03 01:11:49 +02:00

14 lines
244 B
Nix

{ depot, ... }:
{
services.search = {
nodes.host = [ "VEGAS" ];
nixos.host = ./host.nix;
};
monitoring.blackbox.targets.search = {
address = "https://search.${depot.lib.meta.domain}/healthz";
module = "https2xx";
};
}