nix-conf/home/user/git.nix
2024-03-29 12:01:14 +04:00

11 lines
184 B
Nix

let
userName = "gpskwlkr";
email = "giorgi.anakidze@outlook.com";
in
{
programs.git = {
enable = true;
userName = userName;
userEmail = email;
};
}