Updated git config

This commit is contained in:
Emmet
2023-06-28 20:09:57 -05:00
parent 12e6686f1d
commit a917527806

View File

@@ -1,9 +1,9 @@
{ config, lib, pkgs, username, email, ... }:
{ config, lib, pkgs, name, email, ... }:
{
home.packages = [ pkgs.git ];
programs.git.enable = true;
programs.git.userName = username;
programs.git.userName = name;
programs.git.userEmail = email;
programs.git.extraConfig = {
init.defaultBranch = "main";