21 lines
445 B
Nix
Raw Normal View History

2024-01-09 23:11:11 -05:00
# Netdata is an out-of-the-box monitoring tool that exposes many different
# metrics. Not currently in use, in favor of VictoriaMetrics and Grafana.
2024-04-20 09:42:06 -04:00
{ config, lib, ... }:
{
2022-12-21 14:18:03 -07:00
options.netdata.enable = lib.mkEnableOption "Netdata metrics.";
config = lib.mkIf config.netdata.enable {
services.netdata = {
enable = true;
# Disable local dashboard (unsecured)
2024-04-20 09:42:06 -04:00
config = {
web.mode = "none";
};
};
};
}