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