13 lines
278 B
Nix
13 lines
278 B
Nix
{ depot, ... }:
|
|
|
|
{
|
|
services.object-storage = {
|
|
nodes.host = [ "VEGAS" ];
|
|
nixos.host = ./host.nix;
|
|
};
|
|
|
|
monitoring.blackbox.targets.object-storage = {
|
|
address = "https://object-storage.${depot.lib.meta.domain}/minio/health/live";
|
|
module = "https2xx";
|
|
};
|
|
}
|