system/devenv.nix

23 lines
221 B
Nix

{
pkgs,
lib,
config,
inputs,
...
}:
{
packages = with pkgs; [
git
bun
cargo-generate
];
# https://devenv.sh/languages/
languages.rust = {
enable = true;
channel = "stable";
};
}