mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-01 18:39:32 +01:00
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
|
||
|
];
|
||
|
}
|