nix-configs/dev/rust/shell.nix
2025-03-23 14:58:38 -06:00

21 lines
309 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
# Rust
cargo
rustc
# System
pkg-config
util-linux
];
#inputsFrom = with pkgs; [ bat ];
RUST_BACKTRACE = 1;
shellHook = ''
echo "Ready to make some Rust!"
'';
}