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
commit fc956080e2
Notes: github-actions[bot] 2024-12-28 00:14:22 +00:00

View file

@ -15,13 +15,20 @@ pkgs.mkShell {
})) }))
]; ];
packages = with pkgs.qt6Packages; [ packages =
qtbase.dev with pkgs;
qttools with pkgs.qt6Packages;
qtwayland.dev with pkgs.nodePackages;
[
qtbase.dev
qttools
qtwayland.dev
pkgs.ccache ccache
]; clang-tools
pre-commit
prettier
];
shellHook = '' shellHook = ''
# NOTE: This is required to make it find the wayland platform plugin installed # NOTE: This is required to make it find the wayland platform plugin installed