Files
nix/modules/monitor.nix
2026-02-05 14:00:47 -06:00

16 lines
299 B
Nix

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