diff options
-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 ''; }; |