more vscode extensions; update flake

This commit is contained in:
2025-01-23 00:26:51 +00:00
parent 39ae22d7dc
commit ce84616e1c
2 changed files with 14 additions and 10 deletions

View File

@@ -12,7 +12,7 @@ in
programs = {
vscode = {
enable = true;
package = pkgs.vscodium;
package = inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".vscodium;
mutableExtensionsDir = false;
extensions = with openvsx-extensions;[
biomejs.biome
@@ -29,6 +29,8 @@ in
foxundermoon.shell-format
dart-code.flutter
ms-vscode.wasm-wasi-core
rust-lang.rust-analyzer
tamasfe.even-better-toml
] ++ [ vscode-extensions.bradlc.vscode-tailwindcss ];
userSettings = with pkgs;{
"workbench.iconTheme" = "material-icon-theme";
@@ -79,6 +81,8 @@ in
"bashIde.shellcheckPath" = "${shellcheck}/bin/shellcheck";
"shellformat.path" = "${shfmt}/bin/shfmt";
"rust-analyzer.rustfmt.overrideCommand" = [ "${rustfmt}/bin/rustfmt" ];
};
};
};