nixos/home/prog/default.nix

43 lines
605 B
Nix
Raw Normal View History

{pkgs, ...}: {
home.packages = with pkgs; [
# Nix
alejandra
nil
# Python
(python3.withPackages (ps:
with ps; [
2024-02-09 11:10:58 +00:00
ipython
python-lsp-server
pylsp-mypy
tkinter
numpy
2024-02-09 08:57:21 +00:00
scipy
matplotlib
]))
ruff
isort
poetry
# 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
];
}