Files
dotfiles/users/math/home/cli/git.nix
2025-09-01 14:10:43 -04:00

13 lines
225 B
Nix

{
programs.git = {
enable = true;
userEmail = "matthew.michal11@gmail.com";
userName = "Matthew Michal";
extraConfig = {
pull.rebase = true;
color.ui = true;
};
lfs.enable = true;
};
}