diff --git a/src/packaging-guide/environment-setup.md b/src/packaging-guide/environment-setup.md
index 438fdfd..59725c5 100644
--- a/src/packaging-guide/environment-setup.md
+++ b/src/packaging-guide/environment-setup.md
@@ -1,8 +1,12 @@
# Environment Setup
+## StartOS server
+
+You will need a StartOS server to test your package. Follow the [flashing guide](../flashing-guides/) to install StartOS on a physical device or VM.
+
## start-cli
-start-cli is needed to interact with StartOS from the command line.
+start-cli is needed to interact with StartOS from the command line.
Once installed, run
diff --git a/src/packaging-guide/quick-start.md b/src/packaging-guide/quick-start.md
index f0abfea..7ec7c0b 100644
--- a/src/packaging-guide/quick-start.md
+++ b/src/packaging-guide/quick-start.md
@@ -47,32 +47,12 @@ npm i
### From the CLI
-`start-cli install -h -s `
+```
+start-cli install -h -s
+```
-You can eliminate the `-h` argument by hard coding the host in your StartOS [config.yaml] file.
+You can eliminate the `-h` argument by hard-coding the host in `~/.startos/config.yaml`.
### From the GUI
From the GUI of your StartOS server, go to `System > Sideload`, upload the .s9pk file, and click "Install".
-
-~/.startos
-
-developer.key.pem
-config.yaml
-cookies.json
-
- #[arg(short = 'c', long = "config")]
- pub config: Option,
- #[arg(short = 'h', long = "host")]
- pub host: Option,
- #[arg(short = 'r', long = "registry")]
- pub registry: Option,
- #[arg(short = 'p', long = "proxy")]
- pub proxy: Option,
- #[arg(long = "cookie-path")]
- pub cookie_path: Option,
- #[arg(long = "developer-key-path")]
- pub developer_key_path: Option,
-
-// makes it so you don't need to do -h for every start-cli command
-host 'dev box'