Files
dotfiles/users/steve/home/cli/git.nix
2026-04-14 20:13:04 -04:00

15 lines
246 B
Nix

{
programs.git = {
enable = true;
settings = {
user = {
email = "matthew.michal11@gmail.com";
name = "Matthew Michal";
};
pull.rebase = true;
color.ui = true;
};
lfs.enable = true;
};
}