nix-config/home/features/devel/python.nix

14 lines
225 B
Nix

# Everyone needs a Python setup, right?
{ pkgs, ... }:
{
home.packages = with pkgs; [
python3
# catch-all replacement for _most_ other python stuff
uv
# linter
ruff
# lsp(?)
basedpyright
];
}