summaryrefslogtreecommitdiff
path: root/users/seth/programs/git.nix
blob: 6164432bc1f2c0303a1858b3ab6223070fdb0a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, ...}:

{
	programs.git = {
		enable = true;
		extraConfig = {
			init = { defaultBranch = "main"; };
		};
		signing = {
			key = "D31BD0D494BBEE86";
			signByDefault = true;
		};
		userEmail = "[email protected]";
		userName = "seth";
	};
}