1st commit
This commit is contained in:
commit
74d15b4c6a
25 changed files with 1328 additions and 0 deletions
13
home/modules/git.nix
Normal file
13
home/modules/git.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{pkgs, ...}: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
package = pkgs.gitFull;
|
||||
userName = "benstrb";
|
||||
userEmail = "ben.stribrny@gmail.com";
|
||||
extraConfig = {
|
||||
init.defaultBranch = "main";
|
||||
github.user = "benstrb";
|
||||
credential.helper = "store";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue