nixos/home/prog/default.nix
Evie Litherland-Smith b141c15e14 Trim python config, switch to jedi-language-server
Reorganise layout a little bit too, purely cosmetic
2024-03-19 10:40:56 +00:00

40 lines
529 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
# Nix
nil
alejandra
# Lua
lua
lua-language-server
stylua
# Python
python3
python3Packages.jedi-language-server
ruff
mypy
# Fortran
gfortran
fortls
# Rust toolchain
rustc
rust-analyzer
cargo
rustfmt
clippy
# JavaScript / TypeScript
nodejs
nodePackages.typescript-language-server
nodePackages.eslint
# Shell and misc
shfmt
shellcheck
nodePackages.prettier
];
}