Enable git.

This commit is contained in:
Drew Galbraith 2024-12-26 17:24:20 -08:00
parent 2cd81fbd85
commit 2613507a79
1 changed files with 11 additions and 12 deletions

View File

@ -2,8 +2,6 @@
{
home = {
packages = with pkgs; [
home-manager
git jujutsu
];
@ -12,18 +10,19 @@
stateVersion = "23.11";
programs = {
home-manager.enable = true;
};
programs = {
home-manager.enable = true;
git = {
enable = true;
userEmail = "dgalbraith33@gmail.com";
userName = "Drew Galbraith";
extraConfig = {
core = {
editor = "vim";
};
git = {
enable = true;
userEmail = "dgalbraith33@gmail.com";
userName = "Drew Galbraith";
extraConfig = {
core = {
editor = "vim";
};
init.defaultBranch = "main";
};
};
};