10 lines
240 B
Nix
10 lines
240 B
Nix
{ pkgs, ... }: {
|
|
programs.git = {
|
|
enable = true;
|
|
package = pkgs.gitAndTools.gitFull;
|
|
userName = "ChaotiCryptidz";
|
|
userEmail = "chaoticryptidz@owo.monster";
|
|
extraConfig = { credential = { helper = "store"; }; };
|
|
};
|
|
}
|