mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
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:
parent
bcf9ef082f
commit
60847311e6
|
@ -94,6 +94,7 @@ in {
|
|||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-label/nixos";
|
||||
autoResize = true;
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
boot.growPartition = true;
|
||||
|
|
Loading…
Reference in a new issue