summaryrefslogtreecommitdiffstats
path: root/git-linux.nix
blob: a8524c618ccaf48b26987356e8f62ed445098bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  pkgs,
  inputs,
  ...
}: {
  # Make sure to update ./dotfiles/git/config
  programs.git = {
    enable = true;
    config = {
      user = {
        name = "Skullheadx";
        email = "andrew@montgomery.systems";
      };
      init.defaultBranch = "master";
      pull.rebase = true;
    };
  };
}