mkShell nativeBuildInputs -> packages

This commit is contained in:
Gerg-L 2024-07-08 17:26:50 -04:00
commit 337c1ca8ae
No known key found for this signature in database

View file

@ -61,9 +61,9 @@
formatter = pkgs.alejandra;
devShells = {
default = self'.devShells.lsp;
nvim-nix = pkgs.mkShell {nativeBuildInputs = [config.packages.nix];};
nvim-nix = pkgs.mkShell {packages = [config.packages.nix];};
lsp = pkgs.mkShell {
nativeBuildInputs = with pkgs; [nil statix deadnix alejandra];
packages = with pkgs; [nil statix deadnix alejandra];
};
};
};