nixos/home/prog/default.nix

41 lines
577 B
Nix

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