10 lines
252 B
Nix
10 lines
252 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
settings.user.name = "afoucaultc";
|
|
settings.user.email = "antoine.fo.ca@proton.me";
|
|
#userName = "afoucaultc";
|
|
#userEmail = "antoine.fo.ca@proton.me";
|
|
};
|
|
}
|