mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-26 12:10:29 +02:00
home: services: shells: Export Fish environment variables.
Variables set in the Fish configuration weren't previously being exported. * gnu/home/services/shells.scm (serialize-fish-env-vars): Output the `set -x` command instead of `set`. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
@@ -555,9 +555,9 @@ with text blocks from other extensions and the base service."))
|
||||
((key . #f)
|
||||
"")
|
||||
((key . #t)
|
||||
#~(string-append "set " #$key "\n"))
|
||||
#~(string-append "set -x " #$key "\n"))
|
||||
((key . value)
|
||||
#~(string-append "set " #$key " " #$value "\n")))
|
||||
#~(string-append "set -x " #$key " " #$value "\n")))
|
||||
val)))
|
||||
|
||||
(define-configuration home-fish-configuration
|
||||
|
||||
Reference in New Issue
Block a user