Skip to content

Commit

Permalink
fix: extensions version match
Browse files Browse the repository at this point in the history
  • Loading branch information
anthr76 authored Feb 10, 2025
1 parent d49ed24 commit b48da60
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions home-manager/personalities/desktop/vscode/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
programs.vscode = {
enable = true;
mutableExtensionsDir = false;
extensions = let
inherit (inputs.nix-vscode-extensions.extensions.${pkgs.system}) vscode-marketplace;
in
with vscode-marketplace; [
extensions = (
with (pkgs.nix-vscode-extensions.forVSCodeVersion pkgs.vscode.version).vscode-marketplace;
[
# Themes
catppuccin.catppuccin-vsc
thang-nm.catppuccin-perfect-icons
Expand Down Expand Up @@ -53,13 +52,14 @@
yzhang.markdown-all-in-one
streetsidesoftware.code-spell-checker
github.copilot
github.copilot-chat
mechatroner.rainbow-csv
tobermory.es6-string-html
bpruitt-goddard.mermaid-markdown-syntax-highlighting
bashmish.es6-string-css
github.vscode-pull-request-github
github.copilot-chat
];
]
);
userSettings = {
"[go]".editor.defaultFormatter = "golang.go";
"[go]".toolsManagement.autoUpdate = true;
Expand Down

0 comments on commit b48da60

Please sign in to comment.