Remove global tools and language servers

Re-add them as needed for each specific project using each project's
flake.nix file.
This commit is contained in:
Oliver Davies 2025-05-20 11:53:06 +01:00
parent e654473e97
commit 724753327c
5 changed files with 11 additions and 175 deletions

View file

@ -52,6 +52,13 @@
inherit (pkgs) mkShell;
in
{
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
lua54Packages.luacheck
nixd
];
};
packages.${system} = {
default = mkShell { buildInputs = with pkgs; [ just ]; };
};