21 lines
541 B
Nix
21 lines
541 B
Nix
{
|
|
flake.homeModules.vscode = { pkgs, ... }:
|
|
{
|
|
programs.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
|
|
];
|
|
};
|
|
};
|
|
} |