nixos/netboot: mount squashfs with threads=multi

This commit is contained in:
Josh Hoffer
2024-09-10 22:02:20 -07:00
parent ff8b2d5162
commit d308cfcb38

View File

@@ -47,7 +47,7 @@ with lib;
fileSystems."/nix/.ro-store" = mkImageMediaOverride
{ fsType = "squashfs";
device = "../nix-store.squashfs";
options = [ "loop" ];
options = [ "loop" "threads=multi" ];
neededForBoot = true;
};