14 lines
225 B
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
|
|
];
|
|
}
|