Add basic check compat

This commit is contained in:
Greg Hellings
2024-10-03 11:16:06 -05:00
parent 805bf79ef6
commit e2f0856102
11 changed files with 25 additions and 18 deletions
+9
View File
@@ -0,0 +1,9 @@
{ hooks, system, ... }:
{
pre-commit-check = hooks.lib.${system}.run {
src = ./.;
hooks = {
};
};
}