From 6d938bc278fb6a2ead3e61890c50f74b337be261 Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Thu, 15 May 2025 11:28:48 -0300 Subject: [PATCH] Updated git information --- home/panotaka/common/core/git.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/home/panotaka/common/core/git.nix b/home/panotaka/common/core/git.nix index 0857252..472c890 100644 --- a/home/panotaka/common/core/git.nix +++ b/home/panotaka/common/core/git.nix @@ -1,12 +1,15 @@ # git is core no matter what but additional settings may could be added made in optional/foo eg: development.nix { pkgs, + config, + lib, ... -}: -{ +}: { programs.git = { enable = true; package = pkgs.gitAndTools.gitFull; + userName = "Thomas Syms"; + userEmail = "thomassyms@gmail.com"; ignores = [ ".csvignore" @@ -20,6 +23,5 @@ # direnv ".direnv" ]; - }; - + }; }