mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-31 08:13:06 +01:00
24 lines
No EOL
627 B
Nix
24 lines
No EOL
627 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
config,
|
|
...
|
|
}: {
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs.vscodium;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
wakatime.vscode-wakatime # Wakatime for coding statistics
|
|
vue.volar # Vue support
|
|
svelte.svelte-vscode # Svelte support
|
|
pkief.material-icon-theme # Material icons
|
|
prisma.prisma
|
|
ms-python.vscode-pylance # Python support
|
|
ms-dotnettools.csharp # CSharp support
|
|
mikestead.dotenv # Improved dotenv support
|
|
catppuccin.catppuccin-vsc # Catppuccin theme
|
|
jnoortheen.nix-ide # Nix language support
|
|
];
|
|
};
|
|
} |