dotfiles/nixcfgs/modules/home/dev/python.nix

13 lines
276 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
uv
ruff
];
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
ms-python.python
ms-python.debugpy
ms-python.vscode-pylance
charliermarsh.ruff
njpwerner.autodocstring
];
}