{ config, lib, ... }: let cfg = config.os.srv.ntopng; in { options.os.srv.ntopng.enable = lib.mkEnableOption "enables ntopng monitoring"; config = lib.mkIf cfg.enable { services.ntopng = { enable = true; httpPort = 3000; extraConfig = "--packet-fanout"; # TODO fill interfaces interfaces = [ "" "" ]; }; }; }