diff options
author | Ben Sima <ben@bsima.me> | 2021-01-05 15:14:36 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-01-05 15:14:36 -0500 |
commit | b4728c9b8fd362dd6efb8d0e57a3749a8a2e52ba (patch) | |
tree | 6ff7ba4ca0f2a36bc8a68d99ddb772390a945d35 /linux.nix | |
parent | 78d6537a2bd8a3c8bbb467bb6da0b0c7d3dfcc05 (diff) |
Organize my git nix config/aliases better
Diffstat (limited to 'linux.nix')
-rw-r--r-- | linux.nix | 37 |
1 files changed, 0 insertions, 37 deletions
@@ -392,39 +392,6 @@ in }; programs = { - git = { - enable = true; - userName = "Ben Sima"; - userEmail = "ben@bsima.me"; - ignores = [ "*~" "*.swp" ]; - package = pkgs.gitAndTools.gitFull; - signing = { - key = gpgid; - signByDefault = false; - }; - aliases = { - authors = "shortlog -s -n"; - }; - extraConfig = { - push.default = "simple"; - pull.rebase = "true"; - commit.template = "${./lib/git-commit-template}"; - sendemail = { - #smtpuser = "ben@bsima.me"; - #smtpserverport = 587; - smtpserver = "${homedir}/bin/sendmail"; - chainreplyto = false; - composeencoding = "UTF-8"; - annotate = "yes"; - }; - }; - }; - - emacs = { - enable = true; - extraPackages = epkgs: import ./lib/emacs-packages.nix { inherit epkgs; }; - }; - qutebrowser = { enable = true; settings = { @@ -436,10 +403,6 @@ in }; }; - firefox = { - enable = true; - }; - chromium = { enable = true; }; |