nixos/home/prog/default.nix
Evie Litherland-Smith 8a66f1f41e python: add tkinter, matplotlib, poetry
Remove python-lsp-ruff since flymake does ruff linting
2024-02-09 12:04:53 +00:00

38 lines
495 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
# Nix
alejandra
nil
# Python
(python3.withPackages (ps:
with ps; [
ipython
python-lsp-server
pylsp-mypy
tkinter
numpy
scipy
matplotlib
]))
ruff
isort
poetry
# Fortran
gfortran
fortls
# Rust toolchain
cargo
rustc
rustfmt
rust-analyzer
# Shell and misc
shfmt
shellcheck
nodePackages.prettier
];
}