diff --git a/gnu/system.scm b/gnu/system.scm
index 66574c10cb982e122afa1c3ea855d604a0274a8b..b8d0e62f6085e3d20dcaaa5ed31179817c20e13b 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -479,7 +479,7 @@ (define* (etc-directory #:key
 
 # Load the system profile's settings.
 GUIX_PROFILE=/run/current-system/profile \\
-source /run/current-system/profile/etc/profile
+. /run/current-system/profile/etc/profile
 
 # Prepend setuid programs.
 export PATH=/run/setuid-programs:$PATH
@@ -488,7 +488,7 @@ (define* (etc-directory #:key
 then
   # Load the user profile's settings.
   GUIX_PROFILE=\"$HOME/.guix-profile\" \\
-  source \"$HOME/.guix-profile/etc/profile\"
+  . \"$HOME/.guix-profile/etc/profile\"
 else
   # At least define this one so that basic things just work
   # when the user installs their first package.
@@ -508,7 +508,7 @@ (define* (etc-directory #:key
 if [ -n \"$BASH_VERSION\" -a -f /etc/bashrc ]
 then
   # Load Bash-specific initialization code.
-  source /etc/bashrc
+  . /etc/bashrc
 fi
 "))