Files
nix/hosts/common/user/configs/gui/vscode/langs/python/default.nix
2024-10-01 19:20:05 +04:00

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
];
}