doc: Update install doc to reflect changes in README.

Julien LepillerFri Sep 13 11:27:39+0200 2019

849e70e

doc: Update install doc to reflect changes in README. doc/install.md: Update to reflect changes in README.

doc/install.md

66
77
This is a Guix channel. You will first need to
88
[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:
1010
1111
```scheme
1212
(cons* (channel
1313
        (name 'guix-home-manager)
14-
        (url "https://framagit.org/tyreunom/guix-home-manager.git")
14+
        (url "https://framagit.org/tyreunom/guix-home-manager.git"))
1515
       %default-channels)
1616
```
1717

2323
argument, whereas the first can take as many channels as you'd like before
2424
%default-channels.
2525
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+
2634
Usage
2735
-----
2836