summaryrefslogtreecommitdiff
path: root/home/git.nix
blob: 777513a028de755c34aa49f6bca231d5a0806a9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{config, ...}: {
  programs.git = {
    enable = true;

    settings = {
      user.name = config.fullName;
      user.email = config.email;
      init.defaultBranch = "main";
    };

    signing = {
      format = "openpgp";
      key = "D9AF0A4209B7C2DE11A884BFACBC553660D9993D";
      signByDefault = true;
    };
  };
}