15 lines
188 B
Nix
15 lines
188 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
user.name = "Remy Moll";
|
|
user.email = "remy.moll@artidis.com";
|
|
};
|
|
};
|
|
}
|