pin copilot-chat, get dailies from copilot.
This commit is contained in:
parent
938b552353
commit
5cb8dca3a7
2 changed files with 18 additions and 15 deletions
|
@ -438,11 +438,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1722302960,
|
||||
"narHash": "sha256-byZl18UZCHy3vLhxrXp8THzlzmwNfil93ZQLY30i7/Q=",
|
||||
"lastModified": 1722907736,
|
||||
"narHash": "sha256-drU5kbx9EtTqg7rXc6ni0LZuZQy7l/wVgsQ8PSYl5Qw=",
|
||||
"owner": "nix-community",
|
||||
"repo": "nix-vscode-extensions",
|
||||
"rev": "e1a1e6cabd0140ed353e173290e6d92510f5fd66",
|
||||
"rev": "b3c49142939ba6072cb8bdd6109e36d1b70a055a",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -5,9 +5,13 @@ let
|
|||
# VSCode Community Extensions. These are updated daily.
|
||||
vscodeCommunityExtensions = [
|
||||
"dracula-theme.theme-dracula"
|
||||
"editorconfig.editorconfig"
|
||||
"esbenp.prettier-vscode"
|
||||
"github.copilot"
|
||||
# "github.copilot-chat"
|
||||
"jnoortheen.nix-ide"
|
||||
"mikestead.dotenv"
|
||||
"mrmlnc.vscode-json5"
|
||||
"ms-azuretools.vscode-docker"
|
||||
# Python extensions *required* for redhat.ansible/vscode-yaml
|
||||
"ms-python.python"
|
||||
|
@ -21,8 +25,6 @@ let
|
|||
"tamasfe.even-better-toml"
|
||||
"tyriar.sort-lines"
|
||||
"yzhang.markdown-all-in-one"
|
||||
"mrmlnc.vscode-json5"
|
||||
"editorconfig.editorconfig"
|
||||
];
|
||||
# Nixpkgs Extensions. These are updated whenver they get around to it.
|
||||
vscodeNixpkgsExtensions = [
|
||||
|
@ -31,17 +33,18 @@ let
|
|||
];
|
||||
# Straight from the VSCode marketplace.
|
||||
marketplaceExtensions = [
|
||||
{
|
||||
name = "copilot";
|
||||
publisher = "github";
|
||||
version = "1.219.0";
|
||||
sha256 = "Y/l59JsmAKtENhBBf965brSwSkTjSOEuxc3tlWI88sY=";
|
||||
}
|
||||
{
|
||||
# {
|
||||
# name = "copilot";
|
||||
# publisher = "github";
|
||||
# version = "1.219.0";
|
||||
# sha256 = "Y/l59JsmAKtENhBBf965brSwSkTjSOEuxc3tlWI88sY=";
|
||||
# }
|
||||
{ # Apparently there's no insiders build for copilot-chat so the latest isn't what we want.
|
||||
# The latest generally targets insiders build of vs code right now and it won't load on stable.
|
||||
name = "copilot-chat";
|
||||
publisher = "github";
|
||||
version = "0.17.1";
|
||||
sha256 = "Aa4gmHJCveP18v6CAvmkxmqf1JV1LygyQFNpzDz64Gw=";
|
||||
version = "0.18.1";
|
||||
sha256 = "BrcrfhkX2VGF9wznTSlPSdPPv126ScbHb1ngBRGtr4E=";
|
||||
}
|
||||
];
|
||||
# Extract extension strings and coerce them to a list of valid attribute paths.
|
||||
|
|
Loading…
Reference in a new issue