This commit is contained in:
4DBug
2026-02-05 14:00:47 -06:00
parent 5da5790268
commit a8dc62df72
4 changed files with 89 additions and 22 deletions

16
modules/monitor.nix Normal file
View File

@@ -0,0 +1,16 @@
{ config, pkgs, device, ... }:
{
services.netdata = {
enable = true;
config = {
global = {
"memory mode" = "ram";
"debug log" = "none";
"access log" = "none";
"error log" = "syslog";
};
};
};
}