Enable git.
This commit is contained in:
parent
2cd81fbd85
commit
2613507a79
23
home.nix
23
home.nix
|
@ -2,8 +2,6 @@
|
||||||
{
|
{
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
home-manager
|
|
||||||
|
|
||||||
git jujutsu
|
git jujutsu
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -12,18 +10,19 @@
|
||||||
|
|
||||||
stateVersion = "23.11";
|
stateVersion = "23.11";
|
||||||
|
|
||||||
programs = {
|
};
|
||||||
home-manager.enable = true;
|
programs = {
|
||||||
|
home-manager.enable = true;
|
||||||
|
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userEmail = "dgalbraith33@gmail.com";
|
userEmail = "dgalbraith33@gmail.com";
|
||||||
userName = "Drew Galbraith";
|
userName = "Drew Galbraith";
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
core = {
|
core = {
|
||||||
editor = "vim";
|
editor = "vim";
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
init.defaultBranch = "main";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue