22 lines
408 B
Nix

{
pkgs,
lib,
...
}: {
home.packages = with pkgs; [
git-lfs
];
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
programs.git = {
enable = true;
userEmail = "michaelhthomas@outlook.com";
userName = "Michael Thomas";
extraConfig = {
credential.helper = lib.mkDefault "store";
pull.rebase = "false";
init.defaultBranch = "main";
};
};
}