1 { config, lib, pkgs, options, ... }:
4 cfg = config.services.prometheus.exporters.domain;
5 inherit (lib) concatStringsSep;
12 ${pkgs.prometheus-domain-exporter}/bin/domain_exporter \
13 --bind ${cfg.listenAddress}:${toString cfg.port} \
14 ${concatStringsSep " \\\n " cfg.extraFlags}