mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 01:33:17 +01:00
566e479f32
Should fix the ci running out of space. Eventually we'll want to remove this from our global $PATH and leverage nix flakes instead.
23 lines
263 B
Nix
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
|
|
];
|
|
}
|