mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
13 lines
230 B
Nix
13 lines
230 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [ cargo rustc ];
|
|
|
|
#inputsFrom = with pkgs; [ bat ];
|
|
|
|
RUST_BACKTRACE = 1;
|
|
|
|
shellHook = ''
|
|
echo "Ready to make some rust!"
|
|
'';
|
|
}
|