aboutsummaryrefslogtreecommitdiff
path: root/guix/search-paths.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-09-07 15:58:26 +0200
committerLudovic Courtès <ludo@gnu.org>2022-09-08 16:22:21 +0200
commit2f5f539b6063d60de5e1e743ea80201b5090b76c (patch)
tree58780cebeaad7be973ea9e4b869339ba5620aea6 /guix/search-paths.scm
parente7b8e836709528bde663bff454d97cc3e1ec3994 (diff)
downloadguix-2f5f539b6063d60de5e1e743ea80201b5090b76c.tar
guix-2f5f539b6063d60de5e1e743ea80201b5090b76c.tar.gz
search-paths: Clarify $GUIX_EXTENSIONS_PATH comment.
* guix/search-paths.scm ($GUIX_EXTENSIONS_PATH): Clarify comment.
Diffstat (limited to 'guix/search-paths.scm')
-rw-r--r--guix/search-paths.scm7
1 files changed, 3 insertions, 4 deletions
diff --git a/guix/search-paths.scm b/guix/search-paths.scm
index 9177a791e3..733d98359d 100644
--- a/guix/search-paths.scm
+++ b/guix/search-paths.scm
@@ -76,10 +76,9 @@
(define $GUIX_EXTENSIONS_PATH
;; 'GUIX_EXTENSIONS_PATH' is used by Guix to locate extension commands.
- ;; Like 'PATH', it's not attached to any package, so that users don't have
- ;; to install the 'guix' package (which is not supposed to be installed,
- ;; as it will mess up the 'guix pull' installation) or set the variable
- ;; manually.
+ ;; Unlike 'PATH', it is attached to a package, Guix; however, it is
+ ;; convenient to define it by default because the 'guix' package is not
+ ;; supposed to be installed in a profile.
(search-path-specification
(variable "GUIX_EXTENSIONS_PATH")
(files '("share/guix/extensions"))))