nixos/home/prog/default.nix

36 lines
513 B
Nix
Raw Normal View History

{pkgs, ...}: {
home.packages = with pkgs; [
# Nix
alejandra
nil
# Python
(python3.withPackages
(ps: with ps; [ipython numpy]))
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
];
}