System/devshells/rust.nix
2025-01-13 14:53:42 -05:00

22 lines
276 B
Nix

{
withSystem,
inputs,
...
}: {
perSystem = {
config,
pkgs,
...
}: {
devShells.rust = pkgs.mkShell {
buildInputs = with pkgs; [
# Rust toolchain
clang
rustup
# Faster builds
sccache
];
};
};
}