nix/programs/git.nix (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
{ config
, pkgs
, theme
, ...
}:
with theme;
{
programs.git = {
enable = true;
ignores = [ ".envrc" ];
userEmail = "x@icyphox.sh";
userName = "Anirudh Oppiliappan";
signing = {
key = "8A93F96F78C5D4C4";
signByDefault = true;
};
extraConfig = {
commit.verbose = true;
init.defaultBranch = "master";
pull.rebase = "true";
};
};
}
|