mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
8 lines
267 B
Nix
8 lines
267 B
Nix
{ system ? builtins.currentSystem }:
|
|
{
|
|
dns = import ./dns.nix { inherit system; };
|
|
# e2e = import ./e2e.nix { inherit system; }; # TODO: make it pass
|
|
# the following test(s) can be removed when e2e is working:
|
|
rbac = import ./rbac.nix { inherit system; };
|
|
}
|