2018-11-11 08:41:11 +00:00
|
|
|
{ system ? builtins.currentSystem,
|
|
|
|
config ? {},
|
|
|
|
pkgs ? import ../../.. { inherit system config; }
|
|
|
|
}:
|
2018-06-29 18:17:54 +01:00
|
|
|
{
|
2018-11-11 08:41:11 +00: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 18:17:54 +01:00
|
|
|
}
|