Visual Studio Code: Difference between revisions

imported>Milahu
add section: Server did not start successfully
imported>Poelzi
No edit summary
Line 80: Line 80:
Adding extension-specific dependencies, these will be added to the FHS environment:
Adding extension-specific dependencies, these will be added to the FHS environment:
<syntaxHighlight lang=nix>
<syntaxHighlight lang=nix>
# needed for rust lang server extension
# needed for rust lang server and rust-analyzer extension
programs.vscode.package = pkgs.vscode.fhsWithPackages (ps: with ps; [ rustup zlib ]);
programs.vscode.package = pkgs.vscode.fhsWithPackages (ps: with ps; [ rustup zlib openssl.dev pkg-config ]);
</syntaxHighlight>
</syntaxHighlight>