nixfiles/common/netdata.nix
2021-03-13 16:10:13 +01:00

9 lines
185 B
Nix

{ config, pkgs, ...}:
{
environment.systemPackages = with pkgs; [
netdata
];
networking.firewall.allowedTCPPorts = [ 19999 ];
services.netdata.enable = true;
}