create the following .envrc
file in pixi workspace:
source_up .envrc
watch_file pixi.lock
eval "$(pixi shell-hook)"
First line allows loading variables set up in parent directories.
run direnv allow
to enable envrc.
Add golang to pixi project:
pixi add go
Update .envrc
(initialize one if needed) with following lines:
export GOPATH=$CONDA_PREFIX/gopath
export PATH=$PATH:$GOPATH/bin
Create the following .envrc
file in pixi workspace:
source_up .envrc
watch_file MISE_PROJECT_CONFIG_FILE
eval "$(mise env)"
First line allows loading variables set up in parent directories.
run direnv allow
to enable envrc.