This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/programs/emacs/python/default.nix
Evie Litherland-Smith d062732ca0 Switch python to use pylsp again
Add typescript LSP, add nil to Emacs configuration
2024-06-26 13:38:34 +01:00

20 lines
377 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
isort
mypy
numpy
scipy
xarray
matplotlib
]))
];
}