summaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2018-07-31 15:32:03 -0700
committerBen Sima <ben@bsima.me>2018-07-31 15:32:03 -0700
commita34ca9381a5ea022411bf236591f38daf96a9877 (patch)
treeca151c981134e5067f7fa449d1035811eedb3167 /home.nix
parent4bf24abbe94db4ff9be84ae8f484f0c7c612c35e (diff)
Specify git package and configure send-mail command
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/home.nix b/home.nix
index 8fd957a..f7496b4 100644
--- a/home.nix
+++ b/home.nix
@@ -188,11 +188,19 @@ in
userName = "Ben Sima";
userEmail = "ben@bsima.me";
ignores = [ "*~" "*.swp" ];
+ package = pkgs.gitAndTools.gitFull;
extraConfig = ''
[push]
default = simple
+
[commit]
template = ~/.config/nixpkgs/git-commit-template
+
+ [sendemail]
+ smtpuser = ben@bsima.me
+ smptserverport = 587
+ smptserver = mail.bsima.me
+ chainreplyto = false
'';
};