19 lines
510 B
Nix
19 lines
510 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
programs.vscode = lib.mkIf config.graphical {
|
|
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
|
|
];
|
|
};
|
|
} |