make-disk-image: add compressed option to compress qcow2 images

wip/yesman
Orivej Desh 7 years ago
parent a2d3ee77b8
commit 608de48fe4
  1. 7
      nixos/lib/make-disk-image.nix

@ -35,11 +35,16 @@
, # Disk image format, one of qcow2, vpc, raw.
format ? "raw"
, # Whether to compress the image, applicable only when the format is qcow2.
compressed ? false
}:
with lib;
let
compress = optionalString compressed (assert format == "qcow2"; "-c");
filename = "nixos." + {
qcow2 = "qcow2";
vpc = "vhd";
@ -136,7 +141,7 @@ in pkgs.vmTools.runInLinuxVM (
${if format == "raw" then ''
mv $diskImage $out/${filename}
'' else ''
${pkgs.qemu}/bin/qemu-img convert -f raw -O ${format} $diskImage $out/${filename}
${pkgs.qemu}/bin/qemu-img convert -f raw -O ${format} ${compress} $diskImage $out/${filename}
''}
diskImage=$out/${filename}
${postVM}

Loading…
Cancel
Save