nix-config/home/dev.nix
Donovan Glover 566e479f32
meta: Move dev tools to separate module
Should fix the ci running out of space. Eventually we'll want to remove
this from our global $PATH and leverage nix flakes instead.
2024-05-20 13:14:11 -04:00

23 lines
263 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
nodejs
deno
rustc
rustfmt
cargo
cargo-info
cargo-license
cargo-feature
cargo-tarpaulin
cargo-edit
bacon
clippy
texlive.combined.scheme-full
tectonic
];
}