From 79d0e07a2831ca2b36f6c16d98e8ccc63513d2bb Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Tue, 21 Jun 2022 21:57:20 -0400 Subject: [PATCH] fix: make git credential.helper overridable --- user/modules/git.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user/modules/git.nix b/user/modules/git.nix index a37e8a2..c3f7745 100644 --- a/user/modules/git.nix +++ b/user/modules/git.nix @@ -1,4 +1,4 @@ -{ config, pkgs, libs, ... }: +{ config, pkgs, lib, ... }: { home.packages = with pkgs; [ git-lfs @@ -10,7 +10,7 @@ userEmail = "michaelhthomas@outlook.com"; userName = "Michael Thomas"; extraConfig = { - credential.helper = "store"; + credential.helper = lib.mkDefault "store"; pull.rebase = "false"; }; };