System/devshells/rust.nix

22 lines
276 B
Nix
Raw Normal View History

{
2025-01-13 19:53:42 +00:00
withSystem,
inputs,
...
}: {
perSystem = {
config,
pkgs,
...
}: {
devShells.rust = pkgs.mkShell {
buildInputs = with pkgs; [
# Rust toolchain
clang
rustup
# Faster builds
sccache
];
};
2025-01-13 19:53:42 +00:00
};
}