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