nixos-config/system/server/netdata.nix

17 lines
292 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ lib, pkgs, ... }:
{
services.netdata = {
enable = true;
# https://docs.netdata.cloud/daemon/config/
config = {
global = {
"memory mode" = "ram";
"debug log" = "none";
"access log" = "none";
"error log" = "syslog";
};
};
};
}