about summary refs log tree commit diff
path: root/nixos/tests/vector/default.nix
blob: 990b067e81774720dbe1d4aca03593dd3ffa9ddd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ 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; };
}