Fix Flutter

This commit is contained in:
2024-12-19 12:45:06 +01:00
parent efde154c5b
commit 13cc933c01
3 changed files with 39 additions and 1 deletions

View File

@@ -28,6 +28,7 @@
./stack
./telegram
./thunderbird
./vscode
./wallpaper
./xmonad
./zoom

View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.vscode = {
enable = true;
extensions = with pkgs.vscode-extensions; [
dracula-theme.theme-dracula
vscodevim.vim
yzhang.markdown-all-in-one
];
};
}