Files
nix/hosts/common/configs/user/gui/vscode/langs/python/default.nix
2025-02-13 10:21:37 +00:00

18 lines
340 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.mkIf config.programs.vscode.languages.python.enable {
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
];
}