nixos-configs/homeManagerModules/neovim/langs/rust/shell.nix

17 lines
150 B
Nix
Raw Permalink Normal View History

{
mkShell,
cargo,
rustc,
rust-analyzer,
rustfmt,
...
}:
mkShell {
packages = [
cargo
rustc
rust-analyzer
rustfmt
];
}