You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/how-to/vscode.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,14 +20,15 @@ allowing foreign binaries to run on NixOS.
20
20
21
21
Running the VSCode server on NixOS-WSL requires using nix-ld 2.0 which is as of writing only on NixOS unstable or [nix-ld-rs](https://github.com/nix-community/nix-ld-rs) on NixOS 24.05.
22
22
23
-
To set it up, add the following to your configuration:
23
+
To set it up, add the following to your system configuration:
24
24
25
25
```nix
26
26
programs.nix-ld = {
27
27
enable = true;
28
28
package = pkgs.nix-ld-rs; # only for NixOS 24.05
29
29
};
30
30
```
31
+
Note: If you are using Home Manager, you still need to set this up in `configuration.nix`.
0 commit comments