2018-11-11 00:41:11 -08:00
|
|
|
{ system ? builtins.currentSystem,
|
|
|
|
config ? {},
|
|
|
|
pkgs ? import ../../.. { inherit system config; }
|
|
|
|
}:
|
2018-06-29 10:17:54 -07:00
|
|
|
{
|
2018-11-11 00:41:11 -08:00
|
|
|
basic = import ./basic.nix { inherit system pkgs; };
|
|
|
|
with-postgresql-and-redis = import ./with-postgresql-and-redis.nix { inherit system pkgs; };
|
|
|
|
with-mysql-and-memcached = import ./with-mysql-and-memcached.nix { inherit system pkgs; };
|
2018-06-29 10:17:54 -07:00
|
|
|
}
|