mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
Merge e0c42adfaf
into 94605dcade
This commit is contained in:
commit
783e32bc28
4 changed files with 5 additions and 5 deletions
|
@ -593,7 +593,7 @@ in
|
|||
text = ''
|
||||
# Only source this once.
|
||||
if [ -n "$__HM_SESS_VARS_SOURCED" ]; then return; fi
|
||||
export __HM_SESS_VARS_SOURCED=1
|
||||
__HM_SESS_VARS_SOURCED=1
|
||||
|
||||
${config.lib.shell.exportAll cfg.sessionVariables}
|
||||
'' + lib.concatStringsSep "\n"
|
||||
|
|
|
@ -615,7 +615,7 @@ in
|
|||
|
||||
# Only source this once
|
||||
if [[ -z "$__HM_ZSH_SESS_VARS_SOURCED" ]]; then
|
||||
export __HM_ZSH_SESS_VARS_SOURCED=1
|
||||
__HM_ZSH_SESS_VARS_SOURCED=1
|
||||
${envVarsStr}
|
||||
fi
|
||||
'';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Only source this once.
|
||||
if [ -n "$__HM_SESS_VARS_SOURCED" ]; then return; fi
|
||||
export __HM_SESS_VARS_SOURCED=1
|
||||
__HM_SESS_VARS_SOURCED=1
|
||||
@exportLocaleVar@
|
||||
export V1="v1"
|
||||
export V2="v2-v1"
|
||||
|
|
|
@ -7,7 +7,7 @@ let
|
|||
linuxExpected = ''
|
||||
# Only source this once.
|
||||
if [ -n "$__HM_SESS_VARS_SOURCED" ]; then return; fi
|
||||
export __HM_SESS_VARS_SOURCED=1
|
||||
__HM_SESS_VARS_SOURCED=1
|
||||
|
||||
export LOCALE_ARCHIVE_2_27="${config.i18n.glibcLocales}/lib/locale/locale-archive"
|
||||
export V1="v1"
|
||||
|
@ -22,7 +22,7 @@ let
|
|||
darwinExpected = ''
|
||||
# Only source this once.
|
||||
if [ -n "$__HM_SESS_VARS_SOURCED" ]; then return; fi
|
||||
export __HM_SESS_VARS_SOURCED=1
|
||||
__HM_SESS_VARS_SOURCED=1
|
||||
|
||||
export V1="v1"
|
||||
export V2="v2-v1"
|
||||
|
|
Loading…
Add table
Reference in a new issue