about summary refs log tree commit diff
path: root/hosts/common/server/monitoring.nix
blob: a893721369df51b9bfb0667b35857e7f7498e250 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, lib, ... }:

{
  services.prometheus = {
    exporters = {
      node = {
        enable = true;
        enabledCollectors = [ "systemd" ];
      };
    };
  };
}