Files
clan-core/lib/test/default.nix
DavHau 01737d2bf7 clan tests: convert makeTestClan to a module
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
2025-06-03 19:38:02 +07:00

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;
}