nixos/home/prog/default.nix

44 lines
622 B
Nix
Raw Normal View History

{pkgs, ...}: {
home.packages = with pkgs; [
# Nix
alejandra
nil
# Python
(python3.withPackages
(ps:
with ps; [
isort
mypy
python-lsp-server
numpy
matplotlib
pandas
xarray
]))
ruff
poetry
# Fortran
gfortran
fortls
# Rust toolchain
cargo
rustc
rustfmt
rust-analyzer
2024-02-16 17:11:01 +00:00
clippy
# JavaScript / TypeScript
nodejs
nodePackages.typescript-language-server
nodePackages.eslint
# Shell and misc
shfmt
shellcheck
nodePackages.prettier
];
}