about summary refs log tree commit diff
path: root/nixos/tests/vector/default.nix
blob: dc3747da7421603dff70a05894dc9a2b8c505992 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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; };
  syslog-quickwit = import ./syslog-quickwit.nix { inherit system pkgs; };
}