From e63a13e10f271f91b11b96365509efe877e7d1c7 Mon Sep 17 00:00:00 2001 From: joachimschmidt557 Date: Wed, 18 May 2022 19:01:33 +0200 Subject: [PATCH] Add basic rust nix dev shell --- nix/rusty.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 nix/rusty.nix diff --git a/nix/rusty.nix b/nix/rusty.nix new file mode 100644 index 0000000..e4cfb05 --- /dev/null +++ b/nix/rusty.nix @@ -0,0 +1,7 @@ +{ pkgs }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + rustup + ]; +}