Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 220 Bytes

nix.md

File metadata and controls

9 lines (7 loc) · 220 Bytes

shell.nix { pkgs ? import {} }: pkgs.mkShell { # nativeBuildInputs is usually what you want -- tools you need to run nativeBuildInputs = with pkgs.buildPackages; [ ruby_3_2 ]; } nix-shell shell.nix