16 lines
299 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
} |