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 0eb6d0735f599fa84e99b727c93681bcae96c845 (#57751)
which added an assertion stopping the use of `autoResize` when the
filesystem cannot be resized automatically.

+1
+1
nixos/modules/virtualisation/virtualbox-image.nix
··· 94 fileSystems."/" = { 95 device = "/dev/disk/by-label/nixos"; 96 autoResize = true; 97 }; 98 99 boot.growPartition = true;
··· 94 fileSystems."/" = { 95 device = "/dev/disk/by-label/nixos"; 96 autoResize = true; 97 + fsType = "ext4"; 98 }; 99 100 boot.growPartition = true;