12 lines
167 B
Nix
12 lines
167 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
services.prometheus.exporters.node = {
|
||
|
enable = true;
|
||
|
openFirewall = true;
|
||
|
enabledCollectors = [
|
||
|
"systemd"
|
||
|
"logind"
|
||
|
];
|
||
|
};
|
||
|
}
|