inventory tests: use containers by default

This commit is contained in:
DavHau
2025-04-23 18:55:59 +07:00
parent c172996dbf
commit e2fb237c33
13 changed files with 44 additions and 39 deletions

View File

@@ -4,6 +4,7 @@ let
mkOption
types
;
in
{
flakeModules = clanLib.callLib ./flakeModules.nix { };
@@ -17,6 +18,7 @@ in
nixosTest,
pkgs,
self,
useContainers ? true,
...
}:
let
@@ -28,7 +30,9 @@ in
clanFlakeResult = config.clan;
in
{
imports = [ nixosTest ];
imports = [
nixosTest
] ++ lib.optionals (useContainers) [ ./container-test-driver/driver-module.nix ];
options = {
clanSettings = mkOption {
default = { };