infra/modules/apps/prometheus/prometheus-exporters.nix
Benjamin Yule Bädorf de98b3eddb
Some checks failed
Flake checks / Check (pull_request) Failing after 3m58s
refactor: Move all apps into modules
2024-04-28 17:25:40 +02:00

14 lines
189 B
Nix

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