17 lines
255 B
Nix
17 lines
255 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ./web-config.nix ];
|
|
|
|
services.prometheus.exporters.node = {
|
|
enable = true;
|
|
port = 40000;
|
|
openFirewall = true;
|
|
enabledCollectors = [
|
|
"systemd"
|
|
"tcpstat"
|
|
"ethtool"
|
|
"softirqs"
|
|
];
|
|
};
|
|
}
|