ebd38185c8
Co-authored-by: Franz Pletz <fpletz@fnordicwalking.de> Co-authored-by: Robin Gloster <mail@glob.in> Co-authored-by: Janne Heß <janne@hess.ooo> Co-authored-by: Florian Klink <flokli@flokli.de>
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; };
|
|
}
|