Enable alloy on all servers

This commit is contained in:
SebastianStork 2025-09-20 15:38:15 +02:00
parent 7fbb1de671
commit 60b0e790a8
4 changed files with 34 additions and 3 deletions

View file

@ -53,6 +53,12 @@
domain = "budget.${tailscaleDomain}";
};
alloy = {
enable = true;
domain = "alloy-${config.networking.hostName}.${tailscaleDomain}";
collect.hostMetrics = true;
};
caddy.virtualHosts =
let
inherit (config.custom) services;
@ -70,6 +76,9 @@
actualbudget = {
inherit (services.actualbudget) domain port;
};
alloy = {
inherit (services.alloy) domain port;
};
};
};
};