nixos/home/prog/default.nix

36 lines
473 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
python-lsp-ruff
pylsp-mypy
numpy
2024-02-09 08:57:21 +00:00
scipy
]))
ruff
isort
# Fortran
gfortran
fortls
# Rust toolchain
cargo
rustc
rustfmt
rust-analyzer
# Shell and misc
shfmt
shellcheck
nodePackages.prettier
];
}