Files
nix/hosts/common/configs/user/gui/vscode/langs/python/default.nix
Nikolaos Karaolidis 98ce774210 Reorganize imports
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2024-12-21 23:32:29 +02: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
];
}