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