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" ]; - }; - + }; }