commit 1a6355599beef9931f1c23025b89936d2ed2dab7
Author: Nathan Woodburn <github@nathan.woodburn.au>
Date:   Fri Mar 28 11:50:42 2025 +1100

    feat: Add initial readme

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..875367b
--- /dev/null
+++ b/README.md
@@ -0,0 +1,15 @@
+# Device setup
+First generate a ssh key
+```sh
+ssh-keygen -t ed25519 -C "nathan@woodburn.au"
+eval "$(ssh-agent -s)"
+ssh-add ~/.ssh/id_ed25519
+cat ~/.ssh/id_ed25519.pub
+```
+Save the key in Git to allow setup
+
+```sh
+git clone git@woodburn.au:nathanwoodburn/device-setup.git
+cd device-setup
+./setup.sh
+```