Updated git information

This commit is contained in:
2025-05-15 11:28:48 -03:00
parent 6f3da94945
commit 6d938bc278

View File

@@ -1,12 +1,15 @@
# git is core no matter what but additional settings may could be added made in optional/foo eg: development.nix # git is core no matter what but additional settings may could be added made in optional/foo eg: development.nix
{ {
pkgs, pkgs,
config,
lib,
... ...
}: }: {
{
programs.git = { programs.git = {
enable = true; enable = true;
package = pkgs.gitAndTools.gitFull; package = pkgs.gitAndTools.gitFull;
userName = "Thomas Syms";
userEmail = "thomassyms@gmail.com";
ignores = [ ignores = [
".csvignore" ".csvignore"
@@ -21,5 +24,4 @@
".direnv" ".direnv"
]; ];
}; };
} }