11 lines
248 B
Nix
11 lines
248 B
Nix
{pkgs, ...}: {
|
|
programs.git = {
|
|
enable = true;
|
|
lfs.enable = true;
|
|
package = pkgs.gitAndTools.gitFull;
|
|
userName = "Chaos";
|
|
userEmail = "chaoticryptidz@owo.monster";
|
|
extraConfig = {credential = {helper = "store";};};
|
|
};
|
|
}
|