Skip to content

Commit

Permalink
nixosTests.installer: Fix driverInteractive
Browse files Browse the repository at this point in the history
  • Loading branch information
roberth committed Jul 7, 2023
1 parent 218ef2f commit faa1b3b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion nixos/tests/installer.nix
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,14 @@ let
qemu_flags = {"qemuFlags": assemble_qemu_flags()}
import os
image_dir = machine.state_dir
disk_image = os.path.join(image_dir, "machine.qcow2")
hd_flags = {
"hdaInterface": "${iface}",
"hda": "vm-state-machine/machine.qcow2",
"hda": disk_image,
}
${optionalString isEfi ''
hd_flags.update(
Expand Down

0 comments on commit faa1b3b

Please sign in to comment.