2024-05-21 16:13:35 +00:00
|
|
|
{ system ? builtins.currentSystem
|
|
|
|
, config ? { }
|
|
|
|
, pkgs ? import ../../.. { inherit system config; }
|
|
|
|
}:
|
|
|
|
|
|
|
|
{
|
|
|
|
file-sink = import ./file-sink.nix { inherit system pkgs; };
|
2024-05-21 16:16:02 +00:00
|
|
|
api = import ./api.nix { inherit system pkgs; };
|
2024-05-21 16:21:57 +00:00
|
|
|
dnstap = import ./dnstap.nix { inherit system pkgs; };
|
2024-05-21 16:18:27 +00:00
|
|
|
nginx-clickhouse = import ./nginx-clickhouse.nix { inherit system pkgs; };
|
2024-06-03 23:35:54 +00:00
|
|
|
syslog-quickwit = import ./syslog-quickwit.nix { inherit system pkgs; };
|
2024-05-21 16:13:35 +00:00
|
|
|
}
|