nixos/lib/make-disk-image.nix: abritary format input

Pass unrecognized format types as the output file extension to
qemu-img. The motivation is support for "vdi" output.
wip/yesman
Emery Hemingway 4 years ago
parent 0645303fb8
commit 3f922834b8
  1. 2
      nixos/lib/make-disk-image.nix

@ -71,7 +71,7 @@ let format' = format; in let
vdi = "vdi";
vpc = "vhd";
raw = "img";
}.${format};
}.${format} or format;
rootPartition = { # switch-case
legacy = "1";

Loading…
Cancel
Save