voidconf/modules/prometheus.nix
2023-12-30 16:34:28 +01:00

21 lines
422 B
Nix

{ lib, config, ... }:
with lib;
let cfg = config.voidcruiser.prometheus;
in {
options.voidcruiser.prometheus = {
enable = mkEnableOption "Enable prometheus node";
};
config = mkIf cfg.enable {
services.prometheus = {
enable = true;
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" "cpu" ];
port = 9002;
};
};
};
};
}