From a314b1022fdd2af36e0c52a8e9b4bcc49e2715c9 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Wed, 7 Jan 2026 12:20:18 +1100 Subject: [PATCH] feat(git): rebase branch by default when pulling --- modules/home-manager/features/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/features/git.nix b/modules/home-manager/features/git.nix index 2ee75a1..8bffb72 100644 --- a/modules/home-manager/features/git.nix +++ b/modules/home-manager/features/git.nix @@ -5,7 +5,7 @@ init.defaultBranch = "main"; core.editor = "nvim"; push.autoSetupRemote = true; - pull.rebase = false; + pull.rebase = true; user = { name = "wi11-holdsworth"; email = "83637728+wi11-holdsworth@users.noreply.github.com";