11 lines
184 B
Nix
11 lines
184 B
Nix
let
|
|
userName = "gpskwlkr";
|
|
email = "giorgi.anakidze@outlook.com";
|
|
in
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = userName;
|
|
userEmail = email;
|
|
};
|
|
}
|