[bug#77035,1/2] gnu: system: Order imperative profiles first in etc/profile.
Commit Message
* gnu/system.scm (operating-system-etc-service): Swap profile order for
guix-package and guix-home.
Change-Id: Id32568772f4944c22ad830e7416a97d6b0adb66c
---
gnu/system.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
@@ -1090,9 +1090,9 @@ (define* (operating-system-etc-service os)
fi
# Arrange so that ~/.config/guix/current comes first,
-# and guix-home comes before guix-profile.
-for profile in \"$HOME/.guix-profile\" \\
- \"$HOME/.guix-home/profile\" \\
+# and guix-profile comes before guix-home.
+for profile in \"$HOME/.guix-home/profile\" \\
+ \"$HOME/.guix-profile\" \\
\"$HOME/.config/guix/current\"
do
if [ -f \"$profile/etc/profile\" ]