add system packages

This commit is contained in:
Aaron Honeycutt 2025-03-23 14:58:38 -06:00
parent d7d4f2e523
commit 685f11e099

View file

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