mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
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:
parent
9745c3b64a
commit
359fd5b729
1 changed files with 1 additions and 0 deletions
|
@ -12,6 +12,7 @@ in
|
|||
|
||||
|
||||
fileSystems."/" = {
|
||||
fsType = "ext4";
|
||||
device = "/dev/disk/by-label/nixos";
|
||||
autoResize = true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue