aboutsummaryrefslogtreecommitdiff
path: root/common/gitm.nix
blob: ef788299dd41b6906206cdaaad07b05eeb68aa3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
_: {
  # enable programs
  programs = {
    git = {
      enable = true;
      userName = "beanigen";
      userEmail = "beanigit@protonmail.com";
      extraConfig = {
        commit.gpgsign = true;
        gpg.format = "ssh";
        user.signingkey = "~/.ssh/id_ed25519.pub";
        init.defaultBranch = "master";
      };
    };
    # ... add more programs as you see fit
  };
}