nix/git/default.nix

11 lines
140 B
Nix
Raw Normal View History

2022-11-25 16:30:22 +00:00
{ config, pkgs, ... }:
{
programs.git = {
enable = true;
userName = "Evan Reichard";
userEmail = "evan@reichard.io";
};
}