forked from extern/nix-config
b2ff1f09f9
This repository is now cloned as part of install.sh. It is up to the user whether or not they want to run bootstrap.sh on first boot.
31 lines
787 B
Markdown
31 lines
787 B
Markdown
# Install Scripts
|
|
|
|
Here are my Arch Linux install scripts. They are divided into 4 parts:
|
|
|
|
1. Pre-install: Setting up the drive to install Arch on
|
|
2. Install: Installing Arch Linux to that drive
|
|
3. Configure: Writing some basic low-level config files
|
|
4. Post-install: Post-install configuration
|
|
|
|
I use `install.sh` to call these scripts with the proper user-generated variables.
|
|
|
|
> **Note**: If you do not understand my install scripts, you should follow the [Installation guide][archguide] instead.
|
|
|
|
## Usage
|
|
|
|
First, download the install script.
|
|
|
|
```sh
|
|
curl -L https://git.io/.install -o install.sh
|
|
```
|
|
|
|
After you have verified that the install script is indeed correct, run it.
|
|
|
|
```sh
|
|
sh install.sh
|
|
```
|
|
|
|
That's it!
|
|
|
|
[archguide]: https://wiki.archlinux.org/index.php/Installation_guide
|