itemse2/shell.nix
2025-07-22 03:04:06 +02:00

11 lines
176 B
Nix

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