diff --git a/Home.md b/Home.md
index b05c05d..aa31ceb 100644
--- a/Home.md
+++ b/Home.md
@@ -1,15 +1,43 @@
-# [Autorun on a Arch Live CD](https://github.com/Torxed/archinstall/wiki/Autorun-on-Arch-Live-CD)
+Below are a set of quick instructions to build your own ISO.
+For a more detailed documentation of the project, see the official [documentation](#).
-More options for the built ISO:
+# Building your own ISO
-### [Unattended install of a profile](https://github.com/Torxed/archinstall/wiki/Unattended-install-of-a-profile)
+### Step 1: Setup archiso
-### [User guided install (DEFAULT)](https://github.com/Torxed/archinstall/wiki/User-guided-installation-(DEFAULT))
+The best thing you can do, is follow the official documentation for [archiso](https://wiki.archlinux.org/index.php/archiso) on Arch Linux Wiki.
+But the gist is this:
-### [Custom web-server for deployment profiles](https://github.com/Torxed/archinstall/wiki/Custom-web-server-for-deployment-profiles)
+ # mkdir -p ./archiso
+ # cd ./archiso
+ # cp -r /usr/share/archiso/configsreleng/* ./
-# [Rerunning the installation](https://github.com/Torxed/archinstall/wiki/Rerunning-the-installation)
+### Step 2: Updated `pacman.conf` in build environment.
-# Contact
-You'll most likely reach me via the [Issues](https://github.com/Torxed/archinstall/issues) tab the fastest.
-If all else fails, head over to IRC and see if you can't catch me online at `#archinstall@FreeNode`
\ No newline at end of file
+We need to update the `pacman.conf` for the **build** environment.
+The addition will be a custom mirror pointing towards [archlife](https://archlinux.life).
+
+ [archlife]
+ Server = https://archlinux.life/$repo/os/$arch
+ SigLevel = Optional TrustAll
+
+### Step 3: Add packages to `packages.x86_64`
+
+ python
+ archinstall
+
+`archinstall` is pckaged in the `archlife` mirror.
+
+### Step 4: Create a skel `.zprofile` for autolaunch
+
+While standing in the `archiso` folder, create and add the following:
+
+ # mkdir -p ./airootfs/etc/skel
+ # cat <> ./airootfs/etc/skel/.zprofile
+ [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && sh -c "archinstall"
+ EOF
+
+This will auto launch the `archinstall` command without arguments.
+In this mode, it will start a guided installation of archinstall.
+
+This is the same setup you'll find on [https://archlinux.life](https://archlinux.life/).
\ No newline at end of file