about summary refs log tree commit diff
path: root/nixos/tests/nextcloud/default.nix
blob: e4c7a70606cf869338229abbc3d24c105e90c6f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ 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; };
}