nixos/home/prog/default.nix
Evie Litherland-Smith 608faf3fac Add some initial JS stuff
Add nodejs, TS LSP and eslint with flymake plugin for emacs
2024-02-12 09:16:58 +00:00

43 lines
605 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
# Nix
alejandra
nil
# Python
(python3.withPackages (ps:
with ps; [
ipython
python-lsp-server
pylsp-mypy
tkinter
numpy
scipy
matplotlib
]))
ruff
isort
poetry
# 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
];
}