summaryrefslogtreecommitdiff
path: root/users/seth/programs/git.nix
blob: 40ea948633e3c7c8db830b8b81804595a2bbbd46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{config, ...}: {
	programs.git = {
		enable = true;
		extraConfig = {
			init = {defaultBranch = "main";};
			safe = {directory = "/etc/nixos";};
		};
		signing = {
			key = "D31BD0D494BBEE86";
			signByDefault = true;
		};
		userEmail = "[email protected]";
		userName = "seth";
	};
}