Skip to content

Commit

Permalink
Remove mentions of nix-ld-rs
Browse files Browse the repository at this point in the history
Mic rewrote nix-ld and integrated the fork into it and that is the current default implementation in nixos-unstable
  • Loading branch information
SuperSandro2000 committed Sep 17, 2024
1 parent 20630a5 commit 8c67a8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/how-to/vscode.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ environment.systemPackages = [
[nix-ld](https://github.com/Mic92/nix-ld) is a program that provides `/lib64/ld-linux-x86-64.so.2`,
allowing foreign binaries to run on NixOS.

Running the VSCode server on NixOS-WSL requires using [nix-ld-rs](https://github.com/nix-community/nix-ld-rs), instead of the regular nix-ld.
Running the VSCode server on NixOS-WSL requires using nix-ld 2.0 which is as often writing only on unstable or [nix-ld-rs](https://github.com/nix-community/nix-ld-rs).

To set it up, add the following to your configuration:

```nix
programs.nix-ld = {
enable = true;
package = pkgs.nix-ld-rs;
package = pkgs.nix-ld-rs; # only for NixOS 23.05
};
```

Expand Down

0 comments on commit 8c67a8a

Please sign in to comment.