9 lines
181 B
Nix
9 lines
181 B
Nix
{ pkgs, ... }: {
|
|
programs.git = {
|
|
enable = true;
|
|
package = pkgs.gitAndTools.gitFull;
|
|
userName = "ChaotiCryptidz";
|
|
userEmail = "chaoticryptidz@owo.monster";
|
|
};
|
|
}
|