Enable git.
This commit is contained in:
parent
2cd81fbd85
commit
2613507a79
23
home.nix
23
home.nix
|
@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue