From bcbad6715eb8213075f5779c109e11423617b22b Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Mon, 31 Oct 2022 23:43:47 +0000
Subject: [PATCH] fix(git): disable verbose commits

Disable verbose commits as this seems to be causing an issue with Neogit
where the diff is unintentionally included within the commit message.
---
 nixpkgs/home-manager/modules/git.nix | 1 -
 1 file changed, 1 deletion(-)

diff --git a/nixpkgs/home-manager/modules/git.nix b/nixpkgs/home-manager/modules/git.nix
index fde8465e..33e0e7d3 100644
--- a/nixpkgs/home-manager/modules/git.nix
+++ b/nixpkgs/home-manager/modules/git.nix
@@ -63,7 +63,6 @@
       color.ui = true;
       commit = {
         template = "~/.gitmessage";
-        verbose = true;
       };
       core = {
         editor = "nvim";