From 1ac485e44206f483bbd3286fe6dfa046133d8cb2 Mon Sep 17 00:00:00 2001 From: technofab Date: Wed, 31 Dec 2025 18:33:26 +0100 Subject: [PATCH] chore(devShell): add cocogitto --- nix/repo/devShells.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/nix/repo/devShells.nix b/nix/repo/devShells.nix index da44426..830dff5 100644 --- a/nix/repo/devShells.nix +++ b/nix/repo/devShells.nix @@ -42,5 +42,22 @@ in { ]; }; }; + cocogitto.config = { + tag_prefix = "v"; + ignore_merge_commits = true; + changelog = { + authors = [ + { + username = "TECHNOFAB"; + signature = "technofab"; + } + ]; + path = "CHANGELOG.md"; + template = "remote"; + remote = "gitlab.com"; + repository = "nixible"; + owner = "TECHNOFAB"; + }; + }; }; }