yorokobot/shell.nix

21 lines
248 B
Nix

{
pkgs ? import ./pkgs.nix,
...
}:
pkgs.mkShell {
strictDeps = true;
nativeBuildInputs = with pkgs; [
rustc
cargo
];
packages = with pkgs; [
clippy
rust-analyzer
rustfmt
gdb
nixfmt-rfc-style
nil
];
}