website/shell.nix

15 lines
176 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
clippy
rustfmt
rust-analyzer
pagefind
esbuild
nodePackages.pnpm
python3
];
}