chore: rebuild devenv

This commit is contained in:
Michael Mandl 2025-05-13 08:52:38 +02:00
parent 7e8901c7bf
commit a9a6888958
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
4 changed files with 17 additions and 29 deletions

View file

@ -1,7 +1,8 @@
{ pkgs, ... }:
{ ... }:
{
git-hooks.hooks = {
git-hooks = {
hooks = {
check-case-conflicts.enable = true;
check-merge-conflicts.enable = true;
commitizen.enable = true;
@ -10,4 +11,13 @@
markdownlint.enable = true;
mdformat.enable = true;
};
hooks.home-manager-check = {
enable = true;
name = "Home Manager Config Check";
entry = "home-manager switch --dry-run";
pass_filenames = false;
excludes = [ "^docs/" ];
};
};
}