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"; }; };