mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
Use new indentation support to generate properly indented variables Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
10 lines
271 B
Text
10 lines
271 B
Text
# 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
|