From cfbeb16f7d1100beeb8750abfde56d4e970e7ace Mon Sep 17 00:00:00 2001 From: Jacob Bachmann Date: Fri, 5 Apr 2024 16:52:57 +0200 Subject: [PATCH] feat: add git extraConfig --- users/gandalf/modules/git.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/users/gandalf/modules/git.nix b/users/gandalf/modules/git.nix index 3f2ead9..8dc6f24 100644 --- a/users/gandalf/modules/git.nix +++ b/users/gandalf/modules/git.nix @@ -8,5 +8,10 @@ }; userEmail = "jacob.bachmann@posteo.de"; userName = "Jacob Bachmann"; + extraConfig = { + init = { defaultBranch = "main"; }; + core.editor = "nvim"; + pull.rebase = false; + }; }; }