13 lines
188 B
Nix
13 lines
188 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
services.prometheus = {
|
||
|
exporters = {
|
||
|
node = {
|
||
|
enable = true;
|
||
|
enabledCollectors = [ "systemd" ];
|
||
|
port = 9002;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|