doc: Update install doc to reflect changes in README. doc/install.md: Update to reflect changes in README.
doc/install.md
6 | 6 | ||
7 | 7 | This is a Guix channel. You will first need to | |
8 | 8 | [install](https://www.gnu.org/software/guix/download/) Guix itself. Then, simply | |
9 | - | create a new `~/.config/guix/guix/channels.scm` file with this content: | |
9 | + | create a new `~/.config/guix/channels.scm` file with this content: | |
10 | 10 | ||
11 | 11 | ```scheme | |
12 | 12 | (cons* (channel | |
13 | 13 | (name 'guix-home-manager) | |
14 | - | (url "https://framagit.org/tyreunom/guix-home-manager.git") | |
14 | + | (url "https://framagit.org/tyreunom/guix-home-manager.git")) | |
15 | 15 | %default-channels) | |
16 | 16 | ``` | |
17 | 17 | ||
… | |||
23 | 23 | argument, whereas the first can take as many channels as you'd like before | |
24 | 24 | %default-channels. | |
25 | 25 | ||
26 | + | ### Important checks ### | |
27 | + | ||
28 | + | Make sure your guix environment is set up properly. You need to have | |
29 | + | `~/.config/guix/current` as the **first** item in your `$PATH` or you're going | |
30 | + | to run into troubles. Additionnaly, after running `guix pull`, make sure you | |
31 | + | run `hash guix` in any open terminal to make sure bash's cache is cleared of | |
32 | + | the old guix binary location. | |
33 | + | ||
26 | 34 | Usage | |
27 | 35 | ----- | |
28 | 36 |