diff --git a/devshells/rust.nix b/devshells/rust.nix index 7a8160a..5207e18 100644 --- a/devshells/rust.nix +++ b/devshells/rust.nix @@ -3,21 +3,8 @@ perSystem = { config, pkgs, ... }: { - devshells.rust = { - env = [ - { - name = "RUSTC_WRAPPER"; - value = "${pkgs.sccache}/bin/sccache"; - } - ]; - commands = [ - # { - # help = "print hello"; - # name = "hello"; - # command = "echo hello"; - # } - ]; - packages = with pkgs; [ + devShells.rust = pkgs.mkShell { + buildInputs = with pkgs; [ # Rust toolchain clang rustup