diff options
author | Scott Dunlop | 2021-06-01 22:03:57 +0000 |
---|---|---|
committer | GitHub | 2021-06-01 22:03:57 +0000 |
commit | 60caaf7fc46e5cbbd14fe116bae50d91bc954c18 (patch) | |
tree | 100cfe03d3aefad55f762a356062c4fe1e171e53 | |
parent | c2e6b9f506fddec15e48bd06cf712aef2bf53e3c (diff) |
Make HELIX_RUNTIME depend on pwd, not speed's HOME
-rw-r--r-- | shell.nix | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -12,7 +12,7 @@ pkgs.mkShell { # https://github.com/rust-lang/rust/issues/55979 LD_LIBRARY_PATH="${stdenv.cc.cc.lib}/lib64:$LD_LIBRARY_PATH"; - # HELIX_RUNTIME=./runtime; - HELIX_RUNTIME="/home/speed/src/helix/runtime"; + shellHook = '' + export HELIX_RUNTIME=$PWD/runtime + ''; } - |