search-paths: Clarify $GUIX_EXTENSIONS_PATH comment.

* guix/search-paths.scm ($GUIX_EXTENSIONS_PATH): Clarify comment.
This commit is contained in:
Ludovic Courtès 2022-09-07 15:58:26 +02:00
parent e7b8e83670
commit 2f5f539b60
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -76,10 +76,9 @@ (define $PATH
(define $GUIX_EXTENSIONS_PATH (define $GUIX_EXTENSIONS_PATH
;; 'GUIX_EXTENSIONS_PATH' is used by Guix to locate extension commands. ;; '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 ;; Unlike 'PATH', it is attached to a package, Guix; however, it is
;; to install the 'guix' package (which is not supposed to be installed, ;; convenient to define it by default because the 'guix' package is not
;; as it will mess up the 'guix pull' installation) or set the variable ;; supposed to be installed in a profile.
;; manually.
(search-path-specification (search-path-specification
(variable "GUIX_EXTENSIONS_PATH") (variable "GUIX_EXTENSIONS_PATH")
(files '("share/guix/extensions")))) (files '("share/guix/extensions"))))