19 lines
361 B
Nix
19 lines
361 B
Nix
{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
|
|
]))
|
|
];
|
|
}
|