Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ Number of vCPUs available to a virtual machine.

Amount of RAM available to a virtual machine. Value is in MiB (mebibytes, 1024^2 bytes).

- `--nested`

Enable Nested Virtualization.

Note: this requires an M3 or newer CPU and macOS 15+.

#### Example

This configures a virtual machine to use two vCPUs and 2048 MiB of RAM:
Expand Down
2 changes: 1 addition & 1 deletion src/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ fn handle_incoming_stream<T: Read + Write>(stream: &mut T, shutdown_fd: &mut Fil
println!("Error writing GET response: {e}");
}
}
Err(e) => println!("Error reading stream: {}", e),
Err(e) => println!("Error reading stream: {e}"),
}
}

Expand Down
Loading