2021-12-21 13:29:59 +00:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
programs.git = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.gitAndTools.gitFull;
|
|
|
|
userName = "ChaotiCryptidz";
|
|
|
|
userEmail = "chaoticryptidz@owo.monster";
|
2021-12-21 14:00:09 +00:00
|
|
|
extraConfig = {
|
|
|
|
credential = {
|
|
|
|
helper = "store";
|
|
|
|
};
|
|
|
|
};
|
2021-12-21 13:29:59 +00:00
|
|
|
};
|
|
|
|
}
|