astronixvim/shell.nix

20 lines
163 B
Nix
Raw Permalink Normal View History

{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
g++
gcc
python3
nodejs_24
# Rust
cargo
rustc
# Tools
ripgrep
];
}