14 lines
281 B
Nix
14 lines
281 B
Nix
{ self, ... }:
|
|
{ pkgs, ... }:
|
|
{
|
|
default = pkgs.mkShell {
|
|
inherit (self.outputs.checks.${pkgs.system}.git-hooks) shellHook;
|
|
packages = with pkgs; [
|
|
nil
|
|
nixd
|
|
nixfmt-rfc-style
|
|
lua-language-server
|
|
nodePackages.bash-language-server
|
|
];
|
|
};
|
|
}
|