17 lines
283 B
Nix
Raw Normal View History

2023-02-20 20:45:56 -05: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)
config = { web.mode = "none"; };
};
};
}