mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
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; };
|
|
}
|