about summary refs log tree commit diff stats
path: root/bootstrap
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-19 17:11:33 +0100
committerene <ene@sils.li>2023-02-19 17:11:33 +0100
commit2e0a52cc1c92661a3a8b5d0508f5694c620b64c5 (patch)
treea46b8c916247bc89e954f60bb90cf6577288e7dc /bootstrap
parentFix(bootstrap): Declare dependencies (diff)
downloadnixos-config-2e0a52cc1c92661a3a8b5d0508f5694c620b64c5.tar.gz
nixos-config-2e0a52cc1c92661a3a8b5d0508f5694c620b64c5.zip
Fix(bootstrap): Use real path
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/default.nix b/bootstrap/default.nix
index eeadb837..e013ade4 100644
--- a/bootstrap/default.nix
+++ b/bootstrap/default.nix
@@ -12,7 +12,7 @@ in
     nativeBuildInputs = [pkgs.makeWrapper] ++ dependencies;
   } ''
         install -m755 ${./install} -D "$out/bin/${name}"
-        sed -i 's|%SHELL_LIBRARY_PATH|${shell-library}|' "$out/bin/${name}"
+        sed -i 's|%SHELL_LIBRARY_PATH|${shell-library}/lib|' "$out/bin/${name}"
     #patchShebangs "$out/bin/${name}"
         wrapProgram "$out/bin/${name}" --prefix PATH : ${pkgs.lib.makeBinPath dependencies}
   ''