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"; endpoint = "https://git.pleshevski.ru";
assignees = [ "pleshevskiy" ]; assignees = [ "pleshevskiy" ];
autodiscover = true; autodiscover = true;
packageRules = [
{
matchUpdateTypes = [ "minor" "patch" "pin" "digest" ];
automerge = true;
}
];
automergeStrategy = "fast-forward"; automergeStrategy = "fast-forward";
onboardingConfig = { onboardingConfig = {
"$schema" = "https://docs.renovatebot.com/renovate-schema.json"; "$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; cacheHardTtlMinutes = 30;
httpCacheTtlDays = 1; httpCacheTtlDays = 1;

View file

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

View file

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