frzndev-challenges/shell.nix

11 lines
154 B
Nix
Raw Permalink Normal View History

2024-12-01 19:08:04 +00:00
{pkgs ? import <nixpkgs> {}, ...}:
pkgs.mkShell {
name = "frzndev";
packages = with pkgs; [
rust-analyzer
rustfmt
clippy
cargo
];
}