aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2018-06-11 18:00:17 +0200
committerLudovic Courtès <ludo@gnu.org>2018-06-11 18:23:24 +0200
commitb19950a184a9b7506f9be4ecaa043e5a7e460b52 (patch)
treed7a0c1f885a05282f280ec4dc954bbba5d73e4bc
parentb63f6c0192cc5cc2f75d2a7dd8ef5371fe8e56b5 (diff)
downloadguix-b19950a184a9b7506f9be4ecaa043e5a7e460b52.tar
guix-b19950a184a9b7506f9be4ecaa043e5a7e460b52.tar.gz
system: Default .bashrc now sources /etc/bashrc.
This is a followup to commit 1382bde93c3ccb5be6b846b932edd7707fac1a3e, which disabled automatic sourcing of /etc/bashrc by interactive shell. The noticeable effect of the change would be that Bash completion would only work in login shells. * gnu/system/shadow.scm (default-skeletons)["bashrc"]: Source /etc/bashrc.
-rw-r--r--gnu/system/shadow.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm
index ef5b8dab92..28d399f2b1 100644
--- a/gnu/system/shadow.scm
+++ b/gnu/system/shadow.scm
@@ -168,6 +168,9 @@ then
return
fi
+# Source the system-wide file.
+source /etc/bashrc
+
# Adjust the prompt depending on whether we're in 'guix environment'.
if [ -n \"$GUIX_ENVIRONMENT\" ]
then