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!" ''; }