Skip to content

Commit

Permalink
imp: bootstrap docs
Browse files Browse the repository at this point in the history
  • Loading branch information
blaggacao committed Aug 13, 2021
1 parent 5b89e53 commit c30870f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/start/bootstrapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ partition to `/mnt/boot`:
$ mount /dev/disk/by-label/nixos /mnt
$ mkdir -p /mnt/boot && mount /dev/disk/by-label/boot /mnt/boot # UEFI only
$ swapon /dev/$your_swap_partition
# add some extra space to the store, it's running on a tmpfs on your RAM
$ mkdir -p /mnt/tmpstore/{work,store}
$ mount -t overlay overlay -olowerdir=/nix/store,upperdir=/mnt/tmpstore/store,workdir=/mnt/tmpstore/work /nix/store
```

## Install
Expand All @@ -30,12 +33,9 @@ from the time the iso was built:

```console
$ cd /iso/devos
$ nix develop
$ flk install NixOS --impure # use same host as above
$ nixos-install --flake .#NixOS # use same host as above
```

<!-- TODO: find out why --impure is necesary / PRs welcome! -->

## Notes of interest

### Remote access to the live installer
Expand Down

0 comments on commit c30870f

Please sign in to comment.