From 161eee6bb119b806cb9f4dad48547ed2a6e18294 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Sat, 17 May 2025 12:02:13 -0400 Subject: [PATCH] config(git): enable pull.rebase by default --- user/modules/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/modules/git.nix b/user/modules/git.nix index a569765..d961002 100644 --- a/user/modules/git.nix +++ b/user/modules/git.nix @@ -17,7 +17,7 @@ userName = "Michael Thomas"; extraConfig = { credential.helper = lib.mkDefault "store"; - pull.rebase = "false"; + pull.rebase = "true"; init.defaultBranch = "main"; }; };