From 5bca51ab26fcf2c017ade0c530f5fc9c3ad6a2b5 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 7 Sep 2023 09:36:33 +0300 Subject: fix(bashrc): overrride systemd env vars Sponsored-by: author --- bashrc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'bashrc') diff --git a/bashrc b/bashrc index d51061a..657ccbf 100644 --- a/bashrc +++ b/bashrc @@ -153,6 +153,10 @@ prompt_command() { ulimit -c unlimited umask 002 + +# Get environment variables from systemd, if any are set. +. <(systemctl --user show-environment | sed 's/^/export /') + if command -v emacs >/dev/null; then export EDITOR=emacs else @@ -174,9 +178,6 @@ export PYTHONDONTWRITEBYTECODE=1 export STARSHIP_CONFIG=~/.config/starship/config.toml -# Get environment variables from systemd, if any are set. -. <(systemctl --user show-environment | sed 's/^/export /') - if [ -e "$HOME/tmp/cargo" ]; then export CARGO_TARGET_DIR="$HOME/tmp/cargo" elif [ -e "$HOME/cargo" ]; then -- cgit v1.2.1