openstack-image-zfs: don't support vpc type, default to qcow2

This commit is contained in:
Graham Christensen
2022-04-07 15:28:28 -04:00
parent d4c502a94a
commit 1c0b76b5c4
@@ -27,8 +27,8 @@ in
};
format = mkOption {
type = types.enum [ "raw" "qcow2" "vpc" ];
default = "vpc";
type = types.enum [ "raw" "qcow2" ];
default = "qcow2";
description = "The image format to output";
};
};