summaryrefslogtreecommitdiff
path: root/home/git.nix
blob: dc118812433a679158d4ab5d87fc8236a702c206 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ ... }:
{
  programs.git = {
    enable = true;
    settings = {
      user.name = "adikro";
      user.email = "adikro@disroot.org";
      init.defaultBranch = "main";
    };
  };
}