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