mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
12 lines
339 B
Nix
12 lines
339 B
Nix
{
|
|
system ? builtins.currentSystem,
|
|
config ? { },
|
|
pkgs ? import ../../.. { inherit system config; },
|
|
}:
|
|
|
|
{
|
|
remote-write = import ./remote-write.nix { inherit system pkgs; };
|
|
vmalert = import ./vmalert.nix { inherit system pkgs; };
|
|
external-promscrape-config = import ./external-promscrape-config.nix { inherit system pkgs; };
|
|
}
|