nixos-config/hosts/next/prometheus-node.nix

13 lines
195 B
Nix
Raw Normal View History

2022-07-06 20:46:17 +00:00
{ config, pkgs, lib, ... }:
{
services.prometheus = {
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
port = 9002;
};
};
};
}