Let's not put yet another wrapper around runTest, instead expose our logic as a module that can be imported into any nixos-vm-test
14 lines
227 B
Nix
14 lines
227 B
Nix
{
|
|
clanLib,
|
|
...
|
|
}:
|
|
{
|
|
containerTest = import ./container-test.nix;
|
|
baseTest = import ./test-base.nix;
|
|
|
|
flakeModules = clanLib.callLib ./flakeModules.nix { };
|
|
|
|
minifyModule = ./minify.nix;
|
|
sopsModule = ./sops.nix;
|
|
}
|