Merge pull request 'add a nix-flake runner' (#1) from pjjw/nix-flake-runner into master
Some checks failed
Nix / build (nixos-23.05) (push) Failing after 6m13s
Nix / build (nixos-unstable) (push) Failing after 6m13s
Nix / build (nixos-22.11) (push) Failing after 4m58s

Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2023-09-09 21:04:42 -04:00

View File

@@ -0,0 +1,10 @@
{ docker-nixpkgs
, nodejs
, extraContents ? [ ]
}:
docker-nixpkgs.nix-flakes.override {
extraContents = [
# nodejs for runner
nodejs
] ++ extraContents;
}