{ config, inputs, lib, pkgs, ... }: { services = { netdata = { enable = false; config = { web = { "allow connections from" = "localhost netdata.local *"; "default port" = "19999"; "bind to" = "0.0.0.0"; }; }; }; }; networking.firewall.allowedTCPPorts = [ 19999 ]; }