From 685f11e099e1bfc53e542c119fdbbe50ed0a6677 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sun, 23 Mar 2025 14:58:38 -0600 Subject: [PATCH] add system packages --- dev/rust/shell.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/dev/rust/shell.nix b/dev/rust/shell.nix index f6754e1..758ea0b 100644 --- a/dev/rust/shell.nix +++ b/dev/rust/shell.nix @@ -1,13 +1,21 @@ { pkgs ? import {} }: pkgs.mkShell { - packages = with pkgs; [ cargo rustc ]; + 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!" + echo "Ready to make some Rust!" ''; }