From 03c2cf5ee7044d1d67f1c058a5f4b317beb95f41 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Tue, 31 May 2022 13:33:01 -0400 Subject: [PATCH] Use git credential store --- user/modules/git.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/user/modules/git.nix b/user/modules/git.nix index ff63f56..a37e8a2 100644 --- a/user/modules/git.nix +++ b/user/modules/git.nix @@ -9,5 +9,9 @@ enable = true; userEmail = "michaelhthomas@outlook.com"; userName = "Michael Thomas"; + extraConfig = { + credential.helper = "store"; + pull.rebase = "false"; + }; }; } \ No newline at end of file