ncro/nix/shell.nix
NotAShelf ce55a66e9c
chore: set up taplo; format TOML files
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I476156f5f0fa069135862cfac6cafdc46a6a6964
2026-05-11 13:28:30 +03:00

25 lines
293 B
Nix

{
mkShell,
cargo,
clippy,
pkg-config,
rust-analyzer,
rustc,
rustfmt,
taplo,
}:
mkShell {
name = "rust";
strictDeps = true;
nativeBuildInputs = [
cargo
rustc
pkg-config
rust-analyzer
clippy
(rustfmt.override {asNightly = true;})
taplo
];
}