12 lines
157 B
Nix
12 lines
157 B
Nix
let
|
|
userName = "chris";
|
|
email = "stofflees@gmail.com";
|
|
in
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = userName;
|
|
userEmail = email;
|
|
};
|
|
}
|