aboutsummaryrefslogtreecommitdiff
path: root/common/gita.nix
blob: 9dee5620c77ebfe4bfcd9051c1b708d82da1c452 (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 = "rubiigen";
      userEmail = "alyxwren@proton.me";
      extraConfig = {
        commit.gpgsign = true;
        gpg.format = "ssh";
        user.signingkey = "~/.ssh/id_ed25519.pub";
        init.defaultBranch = "master";
      };
    };
    # ... add more programs as you see fit
  };
}