nix/packages/shells/default.nix
Daniel Flanagan ea67672d70
Some checks failed
/ check (push) Failing after 4m17s
chore: tinkering with colmena
2025-03-01 14:41:26 -06:00

15 lines
295 B
Nix

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