1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-14 19:03:09 +00:00

Update dot_envvar

Update executable_dot_bashrc
This commit is contained in:
Thomas A. Christensen II 2021-08-25 15:31:11 -05:00
parent ab434bc04e
commit 22e423f0e8
2 changed files with 7 additions and 0 deletions

View file

@ -44,3 +44,6 @@ export NXF_HOME="$HOME/.nextflow"
export NXF_CONDA_CACHEDIR="$NXF_HOME/conda"
export NXF_SINGULARITY_CACHEDIR="$NXF_HOME/singularity"
export NXF_CHARLIECLOUD_CACHEDIR="$NXF_HOME/charlie"
# Give Julia full CPU access
export JULIA_NUM_THREADS=$(nproc)

View file

@ -5,6 +5,10 @@ if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
if [ -f "$HOME/.modules" ]; then
source $HOME/.modules
fi
# Hook virtual environment modifers
source $HOME/.hooks