summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/system.scm11
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index a4e70f164a4..8c76912d809 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -1131,6 +1131,17 @@ export DICPATH=\"$HOME/.guix-profile/share/hunspell:/run/current-system/profile/
1131# Allow GStreamer-based applications to find plugins. 1131# Allow GStreamer-based applications to find plugins.
1132export GST_PLUGIN_PATH=\"$HOME/.guix-profile/lib/gstreamer-1.0\" 1132export GST_PLUGIN_PATH=\"$HOME/.guix-profile/lib/gstreamer-1.0\"
1133 1133
1134for i in /etc/profile.d/*.sh; do
1135 if [ -r \"$i\" ]; then
1136 if [ \"${-#*i}\" != \"$-\" ]; then
1137 . \"$i\"
1138 else
1139 . \"$i\" >/dev/null
1140 fi
1141 fi
1142done
1143unset i
1144
1134if [ -n \"$BASH_VERSION\" -a -f /etc/bashrc ] 1145if [ -n \"$BASH_VERSION\" -a -f /etc/bashrc ]
1135then 1146then
1136 # Load Bash-specific initialization code. 1147 # Load Bash-specific initialization code.