Files
dotfiles/users/megan/home/cli/git.nix
2025-06-11 22:47:44 -04:00

13 lines
211 B
Nix

{
programs.git = {
enable = true;
userEmail = "mousikos112@gmail.com";
userName = "megan";
extraConfig = {
pull.rebase = true;
color.ui = true;
};
lfs.enable = true;
};
}