Compare commits

...

3 commits

3 changed files with 19 additions and 15 deletions
hosts
istal/services
tatos/hardware-configuration
shared/prometheus

View file

@ -52,19 +52,17 @@ in
endpoint = "https://git.pleshevski.ru";
assignees = [ "pleshevskiy" ];
autodiscover = true;
packageRules = [
{
matchUpdateTypes = [ "minor" "patch" "pin" "digest" ];
automerge = true;
}
];
automergeStrategy = "fast-forward";
onboardingConfig = {
"$schema" = "https://docs.renovatebot.com/renovate-schema.json";
extends = [ "config:recommended" ];
configMigration = true;
};
globalExtends = [ "npm:unpublishSafe" ];
globalExtends = [
"npm:unpublishSafe"
"config:best-practices"
":configMigration"
":automergeMinor"
":automergeRequireAllStatusChecks"
];
cacheHardTtlMinutes = 30;
httpCacheTtlDays = 1;

View file

@ -5,4 +5,11 @@
./generated.nix
./networking.secret.nix
];
swapDevices = [
{
device = "/var/lib/swapfile";
size = 2 * 1024;
}
];
}

View file

@ -7,12 +7,11 @@
enable = true;
port = 40000;
openFirewall = true;
enabledCollectors = [ "systemd" ];
extraFlags = [
"--collector.ethtool"
"--collector.softirqs"
"--collector.tcpstat"
"--collector.wifi"
enabledCollectors = [
"systemd"
"tcpstat"
"ethtool"
"softirqs"
];
};
}