fix: make git credential.helper overridable

This commit is contained in:
Michael Thomas 2022-06-21 21:57:20 -04:00
parent 0e8ec4cd07
commit 79d0e07a28

View File

@ -1,4 +1,4 @@
{ config, pkgs, libs, ... }: { config, pkgs, lib, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
git-lfs git-lfs
@ -10,7 +10,7 @@
userEmail = "michaelhthomas@outlook.com"; userEmail = "michaelhthomas@outlook.com";
userName = "Michael Thomas"; userName = "Michael Thomas";
extraConfig = { extraConfig = {
credential.helper = "store"; credential.helper = lib.mkDefault "store";
pull.rebase = "false"; pull.rebase = "false";
}; };
}; };