nixos/home/prog/default.nix

36 lines
502 B
Nix
Raw Normal View History

{pkgs, ...}: {
home.packages = with pkgs; [
# Nix
alejandra
nil
# Python
isort
ruff
poetry
2024-03-11 18:23:52 +00:00
(python3.withPackages
(ps: with ps; [python-lsp-server]))
# Fortran
gfortran
fortls
# Rust toolchain
cargo
rustc
rustfmt
rust-analyzer
2024-02-16 17:11:01 +00:00
clippy
# JavaScript / TypeScript
nodejs
nodePackages.typescript-language-server
nodePackages.eslint
# Shell and misc
shfmt
shellcheck
nodePackages.prettier
];
}