hello/shell.nix

8 lines
209 B
Nix
Raw Normal View History

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