mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
12 lines
432 B
Nix
12 lines
432 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; };
|
|
syslog-quickwit = import ./syslog-quickwit.nix { inherit system pkgs; };
|
|
}
|