chore: quick push

This commit is contained in:
Nick 2025-03-09 19:37:13 -05:00
parent f3ed254c00
commit b936cfeed6
15 changed files with 190 additions and 14 deletions

View file

@ -0,0 +1,26 @@
{
pkgs,
config,
...
}:
{
devShells = {
default = pkgs.mkShell {
packages = builtins.attrValues {
inherit (pkgs)
just
nil
typst
tinymist
typstyle
yamlfmt
nixfmt-rfc-style
;
inherit (pkgs.nodePackages)
"@commitlint/config-conventional"
;
};
};
shellHook = "${config.pre-commit.installationScript}";
};
}

View file

@ -0,0 +1,7 @@
{
pre-commit.settings.hooks = {
nixfmt.enable = true;
commitizen.enable = true;
statix.enable = true;
};
}