home: symlink-manager: Use existing home-directory symbol.
* gnu/home/services/symlink-manager.scm (update-symlinks-script): Use existing home-directory symbol instead of additional getenv call. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
10d865aa92
commit
9e86e58d6f
|
@ -185,7 +185,7 @@
|
|||
|
||||
#$%initialize-gettext
|
||||
|
||||
(let* ((home (string-append (getenv "HOME") "/.guix-home"))
|
||||
(let* ((home (string-append home-directory "/.guix-home"))
|
||||
(pivot (string-append home ".new"))
|
||||
(new-home (getenv "GUIX_NEW_HOME"))
|
||||
(old-home (getenv "GUIX_OLD_HOME")))
|
||||
|
|
Reference in New Issue