hello/shell.nix
Greg Burd bb933c22b7
gha
2023-09-15 13:54:20 -04:00

8 lines
209 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [ ripgrep act ];
DOCKER_BUILDKIT = 1;
}