aboutsummaryrefslogtreecommitdiffstats
path: root/home/nipsy/common/core/git.nix
blob: 5ff118e1a37a850b0f180c5f4965ba2059753b36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  programs.git = {
    enable = true;
    settings = {
      pull.rebase = true;
      user = {
        email = "nipsy@bitgnome.net";
        name = "Mark Nipper";
      };
    };
  };
}