1
Files
dotfiles/hosts/default/home/python.nix
2025-09-11 07:05:27 +05:30

19 lines
261 B
Nix

{ pkgs, ... }:
{
home.packages = [
pkgs.uv
(pkgs.python313.withPackages (
ps: with ps; [
marimo
python-lsp-server
python-lsp-ruff
pandas
httpx
xlrd
xlwt
sympy
]
))
];
}