netdata enabled

This commit is contained in:
2026-03-12 10:53:43 +03:00
parent be816fe3bd
commit e7daeccb27
+9 -2
View File
@@ -8,14 +8,21 @@
{ {
services = { services = {
netdata = { netdata = {
enable = false; enable = true;
package = pkgs.netdata.override {
withCloudUi = true;
};
config = { config = {
web = { web = {
"allow connections from" = "localhost netdata.local *"; "allow connections from" = "localhost *";
"default port" = "19999"; "default port" = "19999";
"bind to" = "0.0.0.0"; "bind to" = "0.0.0.0";
}; };
}; };
python = {
enable = true;
recommendedPythonPackages = true;
};
}; };
}; };