nixos/amazon-image: default to raw format instead of vpc

With the move to EBS Direct API uploads (PutSnapshotBlock), raw images
can be uploaded directly without conversion, making the qemu-img vpc
conversion step unnecessary.

This avoids a build-time format conversion and simplifies upload
workflows that use the EBS Direct API (e.g. NixOS/amis#364).
This commit is contained in:
Niko Klanecek
2026-04-14 14:26:31 -06:00
parent 115bef8c35
commit 23d4ad8970
@@ -66,7 +66,7 @@ in
"qcow2"
"vpc"
];
default = "vpc";
default = "raw";
description = "The image format to output";
};
};