tuserver/config/services.nix
2026-04-11 13:22:30 +02:00

30 lines
435 B
Nix

rec {
git = {
port = 3000;
domain = "git.nudelerde.de";
};
"metric-exporter" = {
port = 9100;
collectors = [
"systemd"
"processes"
];
};
prometheus = {
port = 9090;
scrapeConfigs = {
node = {
static_configs = [
{
targets = [
"localhost:9100"
"pi.home:9100"
];
}
];
};
};
};
}