21 lines
248 B
Nix
21 lines
248 B
Nix
{
|
|
pkgs,
|
|
extraPackages ? [ ],
|
|
inputsFrom ? [ ],
|
|
shellHook ? "",
|
|
}:
|
|
pkgs.mkShell {
|
|
inherit inputsFrom shellHook;
|
|
|
|
packages =
|
|
(with pkgs; [
|
|
git
|
|
jq
|
|
just
|
|
nil
|
|
nixd
|
|
nixfmt
|
|
])
|
|
++ extraPackages;
|
|
}
|