depot/cluster/services/search/default.nix

14 lines
240 B
Nix

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