diff options
author | Ben Sima <ben@bsima.me> | 2018-07-31 15:32:03 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2018-07-31 15:32:03 -0700 |
commit | a34ca9381a5ea022411bf236591f38daf96a9877 (patch) | |
tree | ca151c981134e5067f7fa449d1035811eedb3167 | |
parent | 4bf24abbe94db4ff9be84ae8f484f0c7c612c35e (diff) |
Specify git package and configure send-mail command
-rw-r--r-- | home.nix | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 ''; }; |