40 lines
733 B
Nix
40 lines
733 B
Nix
rec {
|
|
git = {
|
|
port = 3000;
|
|
domain = "git.nudelerde.de";
|
|
};
|
|
|
|
gtnh = {
|
|
port = 25565;
|
|
serverPackUrl = "https://downloads.gtnewhorizons.com/ServerPacks/GT_New_Horizons_2.8.4_Server_Java_17-25.zip";
|
|
version = "1.7.10";
|
|
memory = "12G";
|
|
timezone = "Europe/Berlin";
|
|
};
|
|
|
|
"metric-exporter" = {
|
|
port = 9100;
|
|
collectors = [
|
|
"systemd"
|
|
"processes"
|
|
];
|
|
};
|
|
|
|
prometheus = {
|
|
port = 9090;
|
|
scrapeConfigs = {
|
|
node = {
|
|
scrape_interval = "60s";
|
|
metrics_path = "/metrics";
|
|
static_configs = [
|
|
{
|
|
targets = [
|
|
"tuserver.home:9100"
|
|
"pi.home:9100"
|
|
];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|