VSCodium: Difference between revisions

m (Category:Applications)
(Use example with hash)
 
Line 11: Line 11:
Extensions can be managed using the 'vscode-with-extensions' package:
Extensions can be managed using the 'vscode-with-extensions' package:


<syntaxHighlight lang=nix>
<syntaxhighlight lang="nix">
environment.systemPackages = with pkgs; [
environment.systemPackages = with pkgs; [
   (vscode-with-extensions.override {
   (vscode-with-extensions.override {
Line 22: Line 22:
     ] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
     ] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
       {
       {
         name = "remote-ssh-edit";
         name = "dscodegpt";
         publisher = "ms-vscode-remote";
         publisher = "DanielSanMedium";
         version = "0.47.2";
         version = "3.4.10";
         sha256 = "1hp6gjh4xp2m1xlm1jsdzxw9d8frkiidhph6nvl24d0h8z34w49g";
         hash = "sha256-zjaM9YME0wfBOwhJTacnQbQvw35QL5NvXIBAx5d/bjI=";
       }
       }
     ];
     ];
   })
   })
];
];
</syntaxHighlight>
</syntaxhighlight>


Some examples here: [https://github.com/search?q=extensionFromVscodeMarketplace&type=code GitHub search for "extensionFromVscodeMarketplace"]
Some examples here: [https://github.com/search?q=extensionFromVscodeMarketplace&type=code GitHub search for "extensionFromVscodeMarketplace"]