summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/system/shadow.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm
index f800c3b5465..63f544cec9c 100644
--- a/gnu/system/shadow.scm
+++ b/gnu/system/shadow.scm
@@ -181,7 +181,7 @@ fi
181alias ls='ls -p --color=auto' 181alias ls='ls -p --color=auto'
182alias ll='ls -l' 182alias ll='ls -l'
183alias grep='grep --color=auto'\n")) 183alias grep='grep --color=auto'\n"))
184 (zlogin (plain-file "zlogin" "\ 184 (zprofile (plain-file "zprofile" "\
185# Honor system-wide environment variables 185# Honor system-wide environment variables
186source /etc/profile\n")) 186source /etc/profile\n"))
187 (guile-wm (computed-file "guile-wm" copy-guile-wm)) 187 (guile-wm (computed-file "guile-wm" copy-guile-wm))
@@ -197,7 +197,10 @@ set debug-file-directory ~/.guix-profile/lib/debug
197set auto-load safe-path /gnu/store/*/lib\n"))) 197set auto-load safe-path /gnu/store/*/lib\n")))
198 `((".bash_profile" ,profile) 198 `((".bash_profile" ,profile)
199 (".bashrc" ,bashrc) 199 (".bashrc" ,bashrc)
200 (".zlogin" ,zlogin) 200 ;; Zsh sources ~/.zprofile before ~/.zshrc, and it sources ~/.zlogin
201 ;; after ~/.zshrc. To avoid interfering with any customizations a user
202 ;; may have made in their ~/.zshrc, put this in .zprofile, not .zlogin.
203 (".zprofile" ,zprofile)
201 (".nanorc" ,(plain-file "nanorc" "\ 204 (".nanorc" ,(plain-file "nanorc" "\
202# Include all the syntax highlighting modules. 205# Include all the syntax highlighting modules.
203include /run/current-system/profile/share/nano/*.nanorc\n")) 206include /run/current-system/profile/share/nano/*.nanorc\n"))