infra/hosts/nachtigall/apps/prometheus-exporters.nix

15 lines
192 B
Nix
Raw Normal View History

{
config,
...
}: {
services.prometheus = {
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
port = 9002;
};
};
};
}