28 lines
488 B
Nix
28 lines
488 B
Nix
{
|
|
programs.git = {
|
|
enable = true;
|
|
userEmail = "yadunand@yadunut.com";
|
|
userName = "Yadunand Prem";
|
|
delta.enable = true;
|
|
lfs.enable = true;
|
|
extraConfig = {
|
|
init.defautBranch = "main";
|
|
|
|
pull.rebase = true;
|
|
pull.autostash = true;
|
|
|
|
rebase.autostash = true;
|
|
|
|
core.excludefile = "~/.gitignore_global";
|
|
|
|
push.autoSetupRemote = true;
|
|
|
|
|
|
commit.gpgsign = true;
|
|
commit.verbose = true;
|
|
|
|
gpg.format = "ssh";
|
|
};
|
|
};
|
|
}
|