fixes and extensions

This commit is contained in:
2024-09-01 23:44:48 +02:00
parent e45a05d026
commit 7adff396c4
14 changed files with 140 additions and 59 deletions

View File

@@ -1,6 +1,22 @@
{pkgs, ...}: {
home.packages = with pkgs; [
vscode
flutter
];
{pkgs, ...}:
{
programs.vscode = {
enable = true;
extensions = with pkgs.vscode-extensions; [
# QOL
mhutchie.git-graph
redhat.vscode-yaml
github.copilot
# python
ms-python.python
ms-python.isort
ms-python.debugpy
ms-python.vscode-pylance
# Nix language
jnoortheen.nix-ide
];
};
}