DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 9cbbd7ab806da4bc9c03ea4d7b46e8ff196b2ff7 nix-arta/roles/prometheus.nix -rw-r--r-- 565 bytes
9cbbd7abJonni Liljamo feat(systems/hosts/arwen): libreoffice 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  config,
  ...
}: let
  cfg = config.roles.prometheus;
in {
  options.roles.prometheus = {
    exporters = lib.mkOption {
      type = lib.types.submodule {
        options = {
          openFirewall = lib.mkOption {
            type = lib.types.bool;
            default = false;
            description = "Wheter to open firewall ports for enabled exporters";
          };
          node.enable = lib.mkEnableOption "node exporter";
          systemd.enable = lib.mkEnableOption "systemd exporter";
        };
      };
      default = {};
    };
  };
}