zsh: Fix setting of machine specific env

This commit is contained in:
2020-02-23 14:03:04 +01:00
parent 7e6d643f42
commit 2b187e3b62

View File

@@ -58,3 +58,7 @@ if [[ -z $DISPLAY ]] ; then
tmux new-session -A -s tmux-tty-$XDG_VTNR tmux new-session -A -s tmux-tty-$XDG_VTNR
fi fi
fi fi
{% for k, v in machine.environment.items() %}
export {{ k }}="{{ v }}"
{% endfor %}