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 { in {
inherit formatter; inherit formatter;
devShells.default = import ./shell.nix { devShells.default = import ./shell.nix {
inherit pkgs nil; inherit pkgs nil formatter;
}; };
}; };
in in

View File

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