description = ''
What filesystem to use for the guest's Nix store.
- erofs is more compact than ext4, but less mature.
-
squashfs is best, but requires patches to set the filesystem label.
+
+ ext4 images are ~4x larger than squashfs images.
+
+ erofs images are only ~2.5x larger than squashfs images, but erofs is less mature than either squashfs or ext4.
+
'';
type = lib.types.enum [ "ext4" "erofs" "squashfs" ];
default = "ext4";