2022-06-06 13:29:04 +02:00
|
|
|
{ config, lib, moduleType, hostPkgs, ... }:
|
|
|
|
let
|
2022-06-27 20:06:30 +02:00
|
|
|
inherit (lib) mkOption types mdDoc;
|
2022-06-06 13:29:04 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
interactive = mkOption {
|
2022-06-27 20:06:30 +02:00
|
|
|
description = mdDoc ''
|
|
|
|
Tests [can be run interactively](#sec-running-nixos-tests-interactively).
|
|
|
|
|
|
|
|
When they are, the configuration will include anything set in this submodule.
|
|
|
|
|
|
|
|
You can set any top-level test option here.
|
|
|
|
'';
|
2022-06-06 13:29:04 +02:00
|
|
|
type = moduleType;
|
2022-06-27 20:06:30 +02:00
|
|
|
visible = "shallow";
|
2022-06-06 13:29:04 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
interactive.qemu.package = hostPkgs.qemu;
|
|
|
|
interactive.extraDriverArgs = [ "--interactive" ];
|
|
|
|
passthru.driverInteractive = config.interactive.driver;
|
|
|
|
};
|
|
|
|
}
|