git.nix (132B)
1 { fullname, email, ... }: 2 3 { 4 programs.git = { 5 enable = true; 6 userName = "${fullname}"; 7 userEmail = "${email}"; 8 }; 9 }