summaryrefslogtreecommitdiff
path: root/home/baseline/git.nix
blob: faad082cca7a7afc639f68f1ea67833ae4e114f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, ... }:
with lib; let
  cfg = config.local;
in
{
  config = {
    programs.git = {
      enable = true;
      userName = cfg.gecos;
      userEmail = cfg.email;
    };
  };
}