{pkgs, ...}: {
xdg.configFile = {
"ruff/pyproject.toml".source = ./ruff.toml;
"pypoetry/config.toml".source = ./pypoetry.toml;
};
home.packages = with pkgs; [
(python3.withPackages
(ps:
with ps; [
python-lsp-server
mypy
numpy
scipy
xarray
matplotlib
]))
];
}