Browse Source

Fix shell path

main
parent
commit
1166b5b447
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 4
      README.org
  2. 4
      shell.nix

4
README.org

@ -395,8 +395,8 @@ in mkShell {
git git
]; ];
shellHook = '' shellHook = ''
export FLAKE=$(pwd)
export PATH=$FLAKE/bin:${nixBin}/bin:$PATH"
export FLAKE="$(pwd)"
export PATH="$FLAKE/bin:${nixBin}/bin:$PATH"
''; '';
} }
#+END_SRC #+END_SRC

4
shell.nix

@ -13,7 +13,7 @@ in mkShell {
git git
]; ];
shellHook = '' shellHook = ''
export FLAKE=$(pwd)
export PATH=$FLAKE/bin:${nixBin}/bin:$PATH"
export FLAKE="$(pwd)"
export PATH="$FLAKE/bin:${nixBin}/bin:$PATH"
''; '';
} }
Loading…
Cancel
Save