nixos/home/prog/default.nix
Evie Litherland-Smith 94e3282d64 Make python install a bit more minimal
Switch back to using pyright as python lsp for the proper venv
support...
2024-02-16 14:27:29 +00:00

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
];
}