Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
13 lines
525 B
Nix
13 lines
525 B
Nix
{ system ? builtins.currentSystem
|
|
, config ? { }
|
|
, pkgs ? import ../../.. { inherit system config; }
|
|
}:
|
|
|
|
{
|
|
alertmanager = import ./alertmanager.nix { inherit system pkgs; };
|
|
config-reload = import ./config-reload.nix { inherit system pkgs; };
|
|
federation = import ./federation.nix { inherit system pkgs; };
|
|
prometheus-pair = import ./prometheus-pair.nix { inherit system pkgs; };
|
|
pushgateway = import ./pushgateway.nix { inherit system pkgs; };
|
|
remote-write = import ./remote-write.nix { inherit system pkgs; };
|
|
}
|