Commit d308cfcb authored by Josh Hoffer's avatar Josh Hoffer
Browse files

nixos/netboot: mount squashfs with threads=multi

parent ff8b2d51
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
      };