nixos/home/prog/default.nix

46 lines
631 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
# Nix
alejandra
nil
# Lua
lua
lua-language-server
stylua
# 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
];
}