Files
nix/hosts/common/configs/user/gui/vscode/langs/python/default.nix
2025-01-22 09:47:04 +00:00

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