Files
jsl-home/homeManagerModules/vscode.nix

19 lines
517 B
Nix

{ config, lib, pkgs, ... }:
{
programs.vscode = lib.mkIf config.graphical.vscode {
enable = true;
package = pkgs.vscode;
profiles.default.extensions = with pkgs.vscode-extensions; [
mhutchie.git-graph
ms-vscode-remote.vscode-remote-extensionpack
ms-python.python
ms-python.vscode-pylance
ms-toolsai.jupyter
charliermarsh.ruff
github.vscode-pull-request-github
github.vscode-github-actions
github.copilot
catppuccin.catppuccin-vsc
];
};
}