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