Compare commits

..

No commits in common. "66451254f9cc9ce98899ac19db30d0fae15768ed" and "f22600ae5f335ca6bde3da7df89838d50403178c" have entirely different histories.

2 changed files with 12 additions and 19 deletions

View file

@ -436,11 +436,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1724203795, "lastModified": 1723828248,
"narHash": "sha256-AQfv0Nk7x8ZAhppNHiXR9La3ug1Lny+vlwzEKS4U1W8=", "narHash": "sha256-Y1zPsSg5t5FWibjooojhJ231u5stC9nYcpeOPrb5F+0=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-vscode-extensions", "repo": "nix-vscode-extensions",
"rev": "279f805aa44ea29c349615770d476aad14d9ddb1", "rev": "b3f6cf134b9485eeb7fd509670c13c98944b02a3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -4,18 +4,19 @@ let
cfg = config.mySystem.editor.vscode; cfg = config.mySystem.editor.vscode;
# VSCode Community Extensions. These are updated daily. # VSCode Community Extensions. These are updated daily.
vscodeCommunityExtensions = [ vscodeCommunityExtensions = [
"ahmadalli.vscode-nginx-conf"
"dracula-theme.theme-dracula" "dracula-theme.theme-dracula"
"editorconfig.editorconfig" "editorconfig.editorconfig"
"esbenp.prettier-vscode" "esbenp.prettier-vscode"
"foxundermoon.shell-format"
"github.copilot" "github.copilot"
# "github.copilot-chat"
"jnoortheen.nix-ide" "jnoortheen.nix-ide"
"mikestead.dotenv" "mikestead.dotenv"
"mrmlnc.vscode-json5" "mrmlnc.vscode-json5"
"ms-azuretools.vscode-docker" "ms-azuretools.vscode-docker"
"ms-python.python" # Python extensions *required* for redhat.ansible/vscode-yaml # Python extensions *required* for redhat.ansible/vscode-yaml
"ms-python.python"
"ms-python.vscode-pylance" "ms-python.vscode-pylance"
"ms-vscode-remote.remote-ssh"
"ms-vscode-remote.remote-ssh-edit" "ms-vscode-remote.remote-ssh-edit"
"pkief.material-icon-theme" "pkief.material-icon-theme"
"redhat.ansible" "redhat.ansible"
@ -24,8 +25,8 @@ let
"tamasfe.even-better-toml" "tamasfe.even-better-toml"
"tyriar.sort-lines" "tyriar.sort-lines"
"yzhang.markdown-all-in-one" "yzhang.markdown-all-in-one"
"astro-build.astro-vscode" "foxundermoon.shell-format"
# "github.copilot-chat" "ahmadalli.vscode-nginx-conf"
]; ];
# Nixpkgs Extensions. These are updated whenver they get around to it. # Nixpkgs Extensions. These are updated whenver they get around to it.
vscodeNixpkgsExtensions = [ vscodeNixpkgsExtensions = [
@ -40,20 +41,12 @@ let
# version = "1.219.0"; # version = "1.219.0";
# sha256 = "Y/l59JsmAKtENhBBf965brSwSkTjSOEuxc3tlWI88sY="; # sha256 = "Y/l59JsmAKtENhBBf965brSwSkTjSOEuxc3tlWI88sY=";
# } # }
{ { # Apparently there's no insiders build for copilot-chat so the latest isn't what we want.
# 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. # The latest generally targets insiders build of vs code right now and it won't load on stable.
name = "copilot-chat"; name = "copilot-chat";
publisher = "github"; publisher = "github";
version = "0.18.2"; version = "0.18.1";
sha256 = "sha256-cku6FV88jMwWoxSiMAufZy00H9Wc1XnJJDBrfWAwXPg="; sha256 = "BrcrfhkX2VGF9wznTSlPSdPPv126ScbHb1ngBRGtr4E=";
}
{
name = "remote-ssh";
publisher = "ms-vscode-remote";
version = "0.113.1";
sha256 = "sha256-/tyyjf3fquUmjdEX7Gyt3MChzn1qMbijyej8Lskt6So=";
} }
]; ];
# Extract extension strings and coerce them to a list of valid attribute paths. # Extract extension strings and coerce them to a list of valid attribute paths.