hello/shell.nix

8 lines
261 B
Nix
Raw Permalink Normal View History

2023-09-21 15:52:33 +00:00
{pkgs ? import <nixpkgs> {}}:
2023-09-13 18:24:26 +00:00
pkgs.mkShell {
2023-09-21 15:52:33 +00:00
#inherit (checks.${system}.pre-commit-check) shellHook;
2023-09-15 17:54:20 +00:00
DOCKER_BUILDKIT = 1;
2023-09-21 15:52:33 +00:00
# nativeBuildInputs -- tools you need to run to facilitate the build
nativeBuildInputs = with pkgs.buildPackages; [ripgrep act];
2023-09-13 18:24:26 +00:00
}