Jump to content

VSCodium: Difference between revisions

Fix code snippet so that it's a valid, complete NixOS module
imported>Mic92
(remote-ssh does not work with vscodium)
imported>Dramforever
(Fix code snippet so that it's a valid, complete NixOS module)
Line 14: Line 14:


<syntaxHighlight lang=nix>
<syntaxHighlight lang=nix>
{ pkgs, ... }:
let
let
   extensions = (with pkgs.vscode-extensions; [
   extensions = (with pkgs.vscode-extensions; [
Line 31: Line 33:
     vscodeExtensions = extensions;
     vscodeExtensions = extensions;
   };
   };
in
in {
   environment.systemPackages = [
   environment.systemPackages = [
     vscodium-with-extensions
     vscodium-with-extensions
   ];
   ];
}
</syntaxHighlight>
</syntaxHighlight>


Please note that some Visual Studio Code extensions have licenses that restrict their use to the official Visual Studio Code builds and therefore do not work with VSCodium. See [https://github.com/VSCodium/vscodium/blob/master/DOCS.md#proprietary-debugging-tools this note on the VSCodium docs page] for what's been found so far and possible workarounds.
Please note that some Visual Studio Code extensions have licenses that restrict their use to the official Visual Studio Code builds and therefore do not work with VSCodium. See [https://github.com/VSCodium/vscodium/blob/master/DOCS.md#proprietary-debugging-tools this note on the VSCodium docs page] for what's been found so far and possible workarounds.
In particular [https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh remote-ssh] does not work yet with vscodium.
In particular [https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh remote-ssh] does not work yet with vscodium.
Anonymous user