Skip to content

Commit f05ccf7

Browse files
Review feedback readme
1 parent 2b5acb6 commit f05ccf7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

doc/src/options.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ available for customization. These are the most important ones:
1616
| `microvm.user` | (qemu only) User account which Qemu will switch to when started as root |
1717
| `microvm.forwardPorts` | (qemu user-networking only) TCP/UDP port forwarding |
1818
| `microvm.vfkit.extraArgs` | (vfkit only) Extra arguments to pass to vfkit |
19-
| `microvm.vfkit.logLevel` | (vfkit only) Log level: "debug", "info", or "error" (default: "info") |
20-
| `microvm.vfkit.rosetta.enable` | (vfkit only) Enable Rosetta for running x86_64 binaries on ARM64 (Apple Silicon only) |
19+
| `microvm.vfkit.logLevel` | (vfkit only) Log level: "debug", "info", or "error" (default: "info") |
20+
| `microvm.vfkit.rosetta.enable` | (vfkit only) Enable Rosetta for running x86_64 binaries on ARM64 (Apple Silicon only) |
2121
| `microvm.kernelParams` | Like `boot.kernelParams` but will not end up in `system.build.toplevel`, saving you rebuilds |
2222
| `microvm.storeOnDisk` | Enables the store on the boot squashfs even in the presence of a share with the host's `/nix/store` |
2323
| `microvm.writableStoreOverlay` | Optional string of the path where all writes to `/nix/store` should go to. |

doc/src/vfkit-rosetta.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Once configured, you can run any x86_64 binary in your ARM64 VM. To verify Roset
3636
# Add an x86_64 package to your configuration
3737
environment.systemPackages = with pkgs; [
3838
file # to verify binary architecture
39-
(pkgsCross.gnu64.hello) # x86_64 version of hello
39+
pkgsCross.gnu64.hello # x86_64 version of hello
4040
];
4141
```
4242

@@ -60,10 +60,10 @@ You can use `pkgsCross.gnu64.<package>` to cross-compile any package from nixpkg
6060

6161
## Options Reference
6262

63-
| Option | Type | Default | Description |
64-
|--------|------|---------|-------------|
65-
| `microvm.vfkit.rosetta.enable` | bool | `false` | Enable Rosetta support |
66-
| `microvm.vfkit.rosetta.install` | bool | `false` | Auto-install Rosetta if missing |
63+
| Option | Type | Default | Description |
64+
|-----------------------------------------|------|---------|---------------------------------|
65+
| `microvm.vfkit.rosetta.enable` | bool | `false` | Enable Rosetta support |
66+
| `microvm.vfkit.rosetta.install` | bool | `false` | Auto-install Rosetta if missing |
6767
| `microvm.vfkit.rosetta.ignoreIfMissing` | bool | `false` | Continue if Rosetta unavailable |
6868

6969
## Limitations

0 commit comments

Comments
 (0)