1{ system ? builtins.currentSystem,
2 config ? {},
3 pkgs ? import ../../.. { inherit system config; }
4}:
5{
6 basic = import ./basic.nix { inherit system pkgs; };
7 with-postgresql-and-redis = import ./with-postgresql-and-redis.nix { inherit system pkgs; };
8 with-mysql-and-memcached = import ./with-mysql-and-memcached.nix { inherit system pkgs; };
9}