summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMunyoki Kilyungi2022-10-06 22:22:34 +0300
committerMunyoki Kilyungi2022-10-06 22:22:34 +0300
commit9010267a57c2017b098fd049b108bf89fa850c0a (patch)
tree1bfdff6713677ac40b7054b4818942819356f950
parent2db7e868835ad8a24d3904a53f43777a1c2db62f (diff)
downloadgn-gemtext-9010267a57c2017b098fd049b108bf89fa850c0a.tar.gz
guix-profile: Use the correct command for sourcing a profile
* topics/guix-profiles.gmi: Fix command for updating a profile.
-rw-r--r--topics/guix-profiles.gmi2
1 files changed, 1 insertions, 1 deletions
diff --git a/topics/guix-profiles.gmi b/topics/guix-profiles.gmi
index cc6daaf..1ca479b 100644
--- a/topics/guix-profiles.gmi
+++ b/topics/guix-profiles.gmi
@@ -24,7 +24,7 @@ $ guix pull -C channels.scm -p ~/.guix-extra-profiles/genenetwork
Activate the newly built profile using
```
$ export GUIX_PROFILE=~/.guix-extra-profiles/genenetwork
-$ . $GUIX_PROFILE/.guix-extra-profiles/genenetwork
+$ . $GUIX_PROFILE/etc/profile
```
Hack away on any GeneNetwork repository as usual. Now, any development environment you create with `guix shell` will be identical to what others on the team and the continuous integration system are using. This development environment is guaranteed to not break regardless of the latest changes to Guix upstream or other externalities.