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