DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: abc0bc75e9fa8f4a4e6ca42932ea63851fee84b4 nix-arta/systems/profiles/lxc/roles.nix -rw-r--r-- 310 bytes
abc0bc75Jonni Liljamo feat(systems/profiles/vm): add vm profile 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  roles.prometheus.exporters = {
    enable = true;
    openFirewall = true;
    node = {
      enable = true;
      extraFlags = [
        "--collector.disable-defaults"
        "--collector.filesystem"
        "--collector.stat"
        "--collector.time"
      ];
    };
    systemd.enable = true;
  };
}