Add commit hook & markdown scripts

This commit is contained in:
Hadi
2026-05-18 22:59:48 +02:00
parent 2705c2882d
commit e3e89582c1
7 changed files with 141 additions and 16 deletions
+15
View File
@@ -37,5 +37,20 @@
"${pname}" = pkg;
default = pkg;
});
devShells = forAllSystems (system: pkgs: {
default = pkgs.mkShell {
packages = with pkgs; [
go
python3
lefthook
doctoc
];
shellHook = ''
lefthook install
'';
};
});
};
}