forgot to change the blobercraft path to blob

This commit is contained in:
Squibid 2025-11-26 14:27:22 -05:00
parent 3d71ed911d
commit 9f388d75d8
Signed by: squibid
GPG key ID: BECE5684D3C4005D
7 changed files with 0 additions and 0 deletions

View file

@ -1,45 +0,0 @@
{ unstable, ... }: let
gatus.up = [
"[STATUS] == 200"
"[RESPONSE_TIME] < 300"
];
in {
services.gatus = {
package = unstable.gatus;
enable = true;
openFirewall = true;
settings = {
web.port = 8081;
endpoints = [
{
name = "nas";
group = "external";
url = "http://192.168.50.240";
interval = "5m";
conditions = gatus.up;
}
{
name = "site";
group = "remote";
url = "https://squi.bid";
interval = "10m";
conditions = gatus.up;
}
{
name = "git site";
group = "remote";
url = "https://git.squi.bid";
interval = "10m";
conditions = gatus.up;
}
{
name = "voidpkgs";
group = "remote";
url = "https://voidpkgs.squi.bid";
interval = "10m";
conditions = [''[BODY] == pat(*x86_64-repodata.sig2*)''];
}
];
};
};
}