16 lines
297 B
Nix
16 lines
297 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.vscode.extensions =
|
|
with pkgs;
|
|
with vscode-extensions;
|
|
[
|
|
ms-python.python
|
|
ms-python.vscode-pylance
|
|
ms-python.debugpy
|
|
ms-python.pylint
|
|
ms-toolsai.jupyter
|
|
ms-toolsai.jupyter-renderers
|
|
njpwerner.autodocstring
|
|
];
|
|
}
|