From a8bd8b70a0398af1eee59e8d96e768c922afedeb Mon Sep 17 00:00:00 2001
From: Harald Hoyer <harald@hoyer.xyz>
Date: Fri, 12 Jan 2024 16:18:08 +0100
Subject: [PATCH 1/2] fix: disable git sign by default

---
 modules/home/tools/git/default.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/home/tools/git/default.nix b/modules/home/tools/git/default.nix
index 70dc74b..589c2db 100644
--- a/modules/home/tools/git/default.nix
+++ b/modules/home/tools/git/default.nix
@@ -14,7 +14,7 @@ in
     userEmail = mkOpt types.str user.email "The email to configure git with.";
     signingKey =
       mkOpt types.str "7F3D64824AC0B6B8009E50504BC0896FB5693595" "The key ID to sign commits with.";
-    signByDefault = mkOpt types.bool true "Whether to sign commits by default.";
+    signByDefault = mkOpt types.bool false "Whether to sign commits by default.";
   };
 
   config = mkIf cfg.enable {

From 2d4b3334c50e3a236dcb4c125839ec840a7b2791 Mon Sep 17 00:00:00 2001
From: Harald Hoyer <harald@hoyer.xyz>
Date: Fri, 12 Jan 2024 16:18:26 +0100
Subject: [PATCH 2/2] fix: disable neovim lsplines

---
 modules/home/cli-apps/neovim/default.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/home/cli-apps/neovim/default.nix b/modules/home/cli-apps/neovim/default.nix
index 1b08bcb..143d928 100644
--- a/modules/home/cli-apps/neovim/default.nix
+++ b/modules/home/cli-apps/neovim/default.nix
@@ -33,7 +33,7 @@ in
           nvimCodeActionMenu.enable = true;
           trouble.enable = true;
           lspSignature.enable = true;
-          lsplines.enable = true;
+          lsplines.enable = false;
         };
 
         vim.debugger = {