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

      signing.signByDefault = !config.home.isolation.active;
    };
  };
}