added nix-ld env vars to allow lsps to work
Some checks failed
Build and Release Docker Images / build-and-push (./backend, public/Dockerfile, my-website-v2_public) (pull_request) Failing after 23m22s
Build and Release Docker Images / build-and-push (./backend, task/Dockerfile, my-website-v2_task) (pull_request) Failing after 28m11s
Build and Release Docker Images / build-and-push (./frontend, Dockerfile, my-website-v2_frontend) (pull_request) Failing after 19m58s
Build and Release Docker Images / create-release (pull_request) Has been cancelled

cause they are precompiled to work on non-nixos systems (with a linker)
This commit is contained in:
2025-12-21 15:20:46 -05:00
parent 02d1c4b784
commit d05f58b67c

View File

@@ -76,8 +76,10 @@
RUST_BACKTRACE = "1"; RUST_BACKTRACE = "1";
RUST_SRC_PATH = "${pkgs.rustToolchain}/lib/rustlib/src/rust/library"; RUST_SRC_PATH = "${pkgs.rustToolchain}/lib/rustlib/src/rust/library";
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig"; PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
# ZELLIJ_CONFIG_FILE = "config.kdl"; NIX_LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
# PATH = "$PATH:$HOME/.local/share/nvim/mason/bin/deno"; pkgs.stdenv.cc.cc
];
NIX_LD = pkgs.lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
}; };
}; };
}); });