hello/shell.nix

6 lines
181 B
Nix
Raw Normal View History

2023-09-13 18:24:26 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
2023-09-13 19:19:18 +00:00
nativeBuildInputs = with pkgs.buildPackages; [ ripgrep ];
2023-09-13 18:24:26 +00:00
}