chore: add alejandra to nix shell

main
LeMarsu 2024-06-09 04:00:18 +02:00
parent 182c7cd83d
commit 3d20bc0ade
2 changed files with 5 additions and 3 deletions

View File

@ -35,7 +35,7 @@
in {
inherit formatter;
devShells.default = import ./shell.nix {
inherit pkgs nil;
inherit pkgs nil formatter;
};
};
in

View File

@ -1,13 +1,15 @@
{
pkgs,
formatter,
nil,
pkgs,
...
}:
with pkgs;
mkShell {
buildInputs = [
formatter
git-cliff
nil
sumneko-lua-language-server
git-cliff
];
}