7 lines
269 B
Nix
7 lines
269 B
Nix
|
{ system ? builtins.currentSystem }:
|
||
|
{
|
||
|
basic = import ./basic.nix { inherit system; };
|
||
|
with-postgresql-and-redis = import ./with-postgresql-and-redis.nix { inherit system; };
|
||
|
with-mysql-and-memcached = import ./with-mysql-and-memcached.nix { inherit system; };
|
||
|
}
|