nixos-configs/homeManagerModules/neovim/langs/rust/shell.nix
matt1432 346077c0e0
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(nvim): move packages out of config to devShells
2024-12-22 00:04:13 -05:00

16 lines
150 B
Nix

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