1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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

This commit is contained in:
Graham Christensen 2022-03-08 09:21:41 -05:00
parent d4c502a94a
commit 1c0b76b5c4

View file

@ -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";
};
};