change files structure
This commit is contained in:
parent
f3a6ce6554
commit
736048f9e5
24 changed files with 28 additions and 31 deletions
16
modules/home/git.nix
Normal file
16
modules/home/git.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
|
||||
userName = "Frost-Phoenix";
|
||||
userEmail = "67cyril6767@gmail.com";
|
||||
|
||||
extraConfig = {
|
||||
init.defaultBranch = "main";
|
||||
credential.helper = "store";
|
||||
};
|
||||
};
|
||||
|
||||
home.packages = [ pkgs.gh pkgs.git-lfs ];
|
||||
}
|
||||
Reference in a new issue