Flake/devshell: Add more useful packages

The list now includes:
    - clang-tools: For clangd and clang-format
    - pre-commit: For the pre-commit hooks
    - prettier: For web-related formatting
This commit is contained in:
Vinicius Deolindo 2024-12-27 06:40:37 -03:00 committed by Andrew Kaster
parent 589538ec8f
commit fc956080e2
Notes: github-actions[bot] 2024-12-28 00:14:22 +00:00

View file

@ -15,12 +15,19 @@ pkgs.mkShell {
}))
];
packages = with pkgs.qt6Packages; [
packages =
with pkgs;
with pkgs.qt6Packages;
with pkgs.nodePackages;
[
qtbase.dev
qttools
qtwayland.dev
pkgs.ccache
ccache
clang-tools
pre-commit
prettier
];
shellHook = ''