64e943d4a2
This is a dummy test that doesn't do much — the secretFile option is just used to set the database type to postgres; otherwise this is an exact copy of the with-postgresql-and-redis.nix test, though with the redis components removed.
11 lines
508 B
Nix
11 lines
508 B
Nix
{ system ? builtins.currentSystem,
|
|
config ? {},
|
|
pkgs ? import ../../.. { inherit system config; }
|
|
}:
|
|
{
|
|
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; };
|
|
with-declarative-redis = import ./with-declarative-redis.nix {inherit system pkgs; };
|
|
with-secrets = import ./with-secrets.nix {inherit system pkgs; };
|
|
}
|