sigil/tests/vmm_x86.nix

14 lines
339 B
Nix
Raw Normal View History

{
2020-06-03 16:14:18 +02:00
name = "vmm_x86";
constraints = specs:
with builtins;
all (f: any f specs) [ (spec: spec == "nova") (spec: spec == "x86") ];
machine = { pkgs, ... }: {
genode.init.children.vmm = {
2021-02-16 12:10:50 +01:00
package = pkgs.genodePackages.test-vmm_x86;
configFile = ./vmm_x86.dhall;
coreROMs = [ "platform_info" ];
};
};
2020-04-26 07:18:38 +02:00
}