home-manager/devenv.nix

11 lines
121 B
Nix

{ pkgs, ... }:
{
packages = with pkgs; [
git
];
git-hooks.hooks = {
commitizen.enable = true;
};
}