From 3d20bc0ade0924f93ca93fa38caabc8c4630a58f Mon Sep 17 00:00:00 2001 From: LeMarsu Date: Sun, 9 Jun 2024 04:00:18 +0200 Subject: [PATCH] chore: add alejandra to nix shell --- flake.nix | 2 +- shell.nix | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 94f509a..1df47c7 100644 --- a/flake.nix +++ b/flake.nix @@ -35,7 +35,7 @@ in { inherit formatter; devShells.default = import ./shell.nix { - inherit pkgs nil; + inherit pkgs nil formatter; }; }; in diff --git a/shell.nix b/shell.nix index b0bf329..4f060dc 100644 --- a/shell.nix +++ b/shell.nix @@ -1,13 +1,15 @@ { - pkgs, + formatter, nil, + pkgs, ... }: with pkgs; mkShell { buildInputs = [ + formatter + git-cliff nil sumneko-lua-language-server - git-cliff ]; }