summaryrefslogtreecommitdiff
path: root/home/git.nix
blob: 8703962d341230bb2bd437865e8b2083e52f78a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, lib, pkgs, ... }:
with lib; {
  config = {
    programs.git = {
      enable = true;
      userName = "Alejandro Soto";
      userEmail = "alejandro@34project.org";

      signing = mkIf (!config.home.isolation.active) {
        key = "E14218589D0D90B52B1A5368F264360B2C0905A6";
        signByDefault = true;
      };
    };
  };
}