mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-21 16:10:52 +00:00
8 lines
119 B
Nix
8 lines
119 B
Nix
{ pkgs ? import <nixpkgs> {}
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
name = "install-nix-action-shell";
|
|
|
|
buildInputs = [ pkgs.yarn ];
|
|
}
|