Evie Litherland-Smith
94e3282d64
Switch back to using pyright as python lsp for the proper venv support...
37 lines
515 B
Nix
37 lines
515 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
# Nix
|
|
alejandra
|
|
nil
|
|
|
|
# Python
|
|
python3
|
|
python3Packages.numpy
|
|
python3Packages.ipython
|
|
black
|
|
isort
|
|
poetry
|
|
nodePackages.pyright
|
|
|
|
# Fortran
|
|
gfortran
|
|
fortls
|
|
|
|
# Rust toolchain
|
|
cargo
|
|
rustc
|
|
rustfmt
|
|
rust-analyzer
|
|
|
|
# JavaScript / TypeScript
|
|
nodejs
|
|
nodePackages.typescript-language-server
|
|
nodePackages.eslint
|
|
|
|
# Shell and misc
|
|
shfmt
|
|
shellcheck
|
|
nodePackages.prettier
|
|
];
|
|
}
|