nixos/virtualbox-image: set the root fsType to reenable root FS resizing

This otherwise does not eval `:tested` any more, which means no nixos
channel updates.

Regression comes from 0eb6d0735f (#57751)
which added an assertion stopping the use of `autoResize` when the
filesystem cannot be resized automatically.
This commit is contained in:
Samuel Dionne-Riel 2019-03-24 22:37:58 -04:00
parent bcf9ef082f
commit 60847311e6

View file

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