astronixvim/shell.nix
2025-11-21 13:28:35 +01:00

19 lines
163 B
Nix

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