diff options
Diffstat (limited to 'nix/dev.nix')
-rw-r--r-- | nix/dev.nix | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/nix/dev.nix b/nix/dev.nix index c39e1565..a9c1dc65 100644 --- a/nix/dev.nix +++ b/nix/dev.nix @@ -23,18 +23,13 @@ types_or = ["c" "c++" "java" "json" "objective-c"]; }; }; + + tools.clang-tools = pkgs.clang-tools_16; }; }; devShells.default = pkgs.mkShell { inherit (self.checks.${system}.pre-commit-check) shellHook; - packages = with pkgs; [ - nodePackages.markdownlint-cli - alejandra - deadnix - clang-tools - nil - ]; inputsFrom = [self.packages.${system}.prismlauncher-unwrapped]; buildInputs = with pkgs; [ccache ninja]; |