🧑💻 switch to vscode insiders (to try out copilot-chat)
This commit is contained in:
parent
9aee717be2
commit
ad2a90d44c
|
@ -1,7 +1,16 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscode;
|
package = (pkgs.vscode.override { isInsiders = true; }).overrideAttrs
|
||||||
|
(oldAttrs: {
|
||||||
|
src = (builtins.fetchTarball {
|
||||||
|
url =
|
||||||
|
"https://code.visualstudio.com/sha/download?build=insider&os=linux-x64";
|
||||||
|
sha256 = "1nvmnf4w2894v21zcmh1xzcxzzilc10qsqhz2i5hqvrn2vcw0ivv";
|
||||||
|
});
|
||||||
|
pname = "vscode-insiders";
|
||||||
|
version = "latest";
|
||||||
|
});
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
# github.copilot
|
# github.copilot
|
||||||
eamodio.gitlens
|
eamodio.gitlens
|
||||||
|
|
Loading…
Reference in a new issue