Files
dotfiles/users/math/home/cli/git.nix

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