horrorhttp/shell.nix
2025-09-07 16:39:28 +02:00

11 lines
176 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustc
cargo
helix
rust-analyzer
cargo-watch
sqlite-interactive
];
}