chore: replace manual dev-shell with devenv

This commit is contained in:
Michael Mandl 2025-03-04 15:26:53 +01:00
parent 5cb4656a71
commit a41b0ffd2c
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
7 changed files with 140 additions and 64 deletions

11
devenv.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
packages = with pkgs; [
git
];
git-hooks.hooks = {
commitizen.enable = true;
};
}