Files
home-manager/tests/modules/programs/zsh/session-variables.zshenv
Austin Horstman 2b03dc82bb lib/zsh: revert escapeShellArg in toZshValue
Causes variables to be generated with single ticks breaking shell
expansion.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-09-28 14:44:14 -05:00

11 lines
267 B
Plaintext

# Environment variables
. "/home/hm-user/.nix-profile/etc/profile.d/hm-session-vars.sh"
# Only source this once
if [[ -z "$__HM_ZSH_SESS_VARS_SOURCED" ]]; then
export __HM_ZSH_SESS_VARS_SOURCED=1
export PATH="$HOME/bin:$PATH"
export V1="v1"
export V2="v2-v1"
fi