9 lines
166 B
Nix
9 lines
166 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
networking.firewall.allowedTCPPorts = [ 9100 ];
|
||
|
services.prometheus = {
|
||
|
enable = true;
|
||
|
exporters.node.enable = true;
|
||
|
};
|
||
|
}
|