Added git module with default user info

This commit is contained in:
Chris Toph 2024-09-26 00:08:35 -04:00
parent 87dde5a2af
commit 27b416db5e
2 changed files with 14 additions and 0 deletions

13
common/git/default.nix Normal file
View file

@ -0,0 +1,13 @@
{
# !!! FOR HOME MANAGER Not nix config
programs.git = {
enable = true;
userName = "[REDACTED]";
userEmail = "36116606+TophC7@users.noreply.github.com";
extraConfig = {
init = {
defaultBranch = "main";
};
};
};
}

View file

@ -4,6 +4,7 @@
imports = [ imports = [
# Common Modules # Common Modules
../../../common/home ../../../common/home
../../../common/git
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [