dotfiles/modules/services/netdata.nix
2022-10-14 04:01:41 +00:00

15 lines
191 B
Nix

{ config, pkgs, lib, ... }: {
config = {
services.netdata = {
enable = true;
# Disable local dashboard (unsecured)
config = { web.mode = "none"; };
};
};
}