Updated git config

This commit is contained in:
Emmet 2023-06-28 20:09:57 -05:00
parent 1d5a4ce2ff
commit ae5481a4d6

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";