Use plugins from override

This commit is contained in:
Greg Hellings
2025-03-20 11:22:42 -05:00
parent 5bf400de97
commit dc55ec5e0f
+2 -3
View File
@@ -2,7 +2,6 @@
pkgs, pkgs,
config, config,
lib, lib,
top,
... ...
}: }:
@@ -24,7 +23,7 @@ in
enable = true; enable = true;
profiles.default = { profiles.default = {
extensions = extensions =
with top.vsext.extensions."${pkgs.stdenv.system}".vscode-marketplace; with pkgs.vscode-marketplace;
[ [
arrterian.nix-env-selector arrterian.nix-env-selector
asvetliakov.vscode-neovim asvetliakov.vscode-neovim
@@ -44,7 +43,7 @@ in
vscjava.vscode-java-debug vscjava.vscode-java-debug
wholroyd.jinja wholroyd.jinja
] ]
++ (with top.vsext.extensions."${pkgs.stdenv.system}".vscode-marketplace-release; [ ++ (with pkgs.vscode-marketplace-release; [
github.copilot github.copilot
github.copilot-chat github.copilot-chat
]); ]);