nixos-config/system/server/netdata.nix

16 lines
306 B
Nix
Raw Normal View History

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