yazi/nix/shell.nix
2026-04-26 15:27:21 +08:00

25 lines
345 B
Nix

{
mkShell,
yazi,
toolchain,
cspell,
yazi-unwrapped,
}:
mkShell {
packages = yazi.passthru.runtimePaths ++ [
(toolchain.override {
extensions = [
"rust-src"
"rustfmt"
"rust-analyzer"
"clippy"
];
})
cspell
];
inputsFrom = [ yazi-unwrapped ];
env.RUST_BACKTRACE = "1";
}