nixos/home/prog/default.nix
Evie Litherland-Smith 39fe7cde05 Add mypy and black to standard python install
Move ruff and isort to be python modules instead of standalone
2024-03-18 07:49:16 +00:00

41 lines
573 B
Nix

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