17 lines
351 B
Nix

{ config, 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";
};
};
}