summaryrefslogtreecommitdiff
path: root/guix/scripts/home
diff options
context:
space:
mode:
authorXinglu Chen <public@yoctocell.xyz>2021-10-30 12:42:34 +0200
committerLudovic Courtès <ludo@gnu.org>2021-10-31 00:51:05 +0200
commit3be1a982f30dee261b90fd2779fc4d1b04c50961 (patch)
tree15054b3c633cdc17ebe5515b53358115fb04f25d /guix/scripts/home
parente4d09d25ae6e4319c9eb1c78601af7007128a21e (diff)
downloadguix-patches-3be1a982f30dee261b90fd2779fc4d1b04c50961.tar
guix-patches-3be1a982f30dee261b90fd2779fc4d1b04c50961.tar.gz
guix home: import: Fix module name for Bash service.
* guix/scripts/home/import.scm (generate-bash-configuration+modules): Change (gnu home-services bash) to (gnu home-services shells); add (guix gexp). Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/scripts/home')
-rw-r--r--guix/scripts/home/import.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/home/import.scm b/guix/scripts/home/import.scm
index 533abdbb8d..f20088aa88 100644
--- a/guix/scripts/home/import.scm
+++ b/guix/scripts/home/import.scm
@@ -60,7 +60,8 @@
(list (slurp-file-gexp
(local-file ,logout)))))
'())))
- (gnu home-services bash))))
+ (guix gexp)
+ (gnu home services shells))))