Files
nixos/modules/server/netdata.nix
T
2026-03-09 10:50:12 +03:00

26 lines
361 B
Nix

{
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
];
}