nixos/modules/virtualisation/google-compute-config.nix: pin filesystem type to ext4 for now

Fix #61859.
Assertion fails when a Google Compute Engine image is built, because
now choices of filesystem types are restricted to `f2fs` and `ext` family if
auto-resizing is enabled.
This change will pin the filesystem used on such an image to be `ext4` for now.
This commit is contained in:
Ding Xiang Fei 2019-05-22 14:44:52 +08:00
parent 9745c3b64a
commit 359fd5b729

View file

@ -12,6 +12,7 @@ in
fileSystems."/" = {
fsType = "ext4";
device = "/dev/disk/by-label/nixos";
autoResize = true;
};