35 lines
472 B
Nix
35 lines
472 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
# Nix
|
|
alejandra
|
|
nil
|
|
|
|
# Python
|
|
isort
|
|
ruff
|
|
poetry
|
|
python3Packages.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
|
|
];
|
|
}
|