0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03: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 { format = mkOption {
type = types.enum [ "raw" "qcow2" "vpc" ]; type = types.enum [ "raw" "qcow2" ];
default = "vpc"; default = "qcow2";
description = "The image format to output"; description = "The image format to output";
}; };
}; };