fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
11 lines
357 B
Nix
11 lines
357 B
Nix
{ system ? builtins.currentSystem
|
|
, config ? { }
|
|
, pkgs ? import ../../.. { inherit system config; }
|
|
}:
|
|
|
|
{
|
|
file-sink = import ./file-sink.nix { inherit system pkgs; };
|
|
api = import ./api.nix { inherit system pkgs; };
|
|
dnstap = import ./dnstap.nix { inherit system pkgs; };
|
|
nginx-clickhouse = import ./nginx-clickhouse.nix { inherit system pkgs; };
|
|
}
|