From 24589a4689ec7c4a3c722daeece04d76dd5b7f12 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Wed, 17 Feb 2021 23:30:14 +0530 Subject: Moves configuration around to modules --- modules/git.home.nix | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 modules/git.home.nix (limited to 'modules/git.home.nix') diff --git a/modules/git.home.nix b/modules/git.home.nix new file mode 100644 index 0000000..440a7d5 --- /dev/null +++ b/modules/git.home.nix @@ -0,0 +1,38 @@ +{ config, pkgs, ... }: +{ + programs.git = { + enable = true; + userEmail = "phenax5@gmail.com"; + userName = "Akshay Nair"; + ignores = [ + "tags" + ".vim.session" + "tags.lock" + "tags.temp" + ]; + aliases = { + ignore = "!gi() { curl -sL https://www.toptal.com/developers/gitignore/api/$@ ;}; gi"; + }; + extraConfig = { + "color" = { + "ui" = true; + }; + "color \"diff-highlight\"" = { + oldNormal = "red bold"; + oldHighlight = "red bold 52"; + newNormal = "green bold"; + newHighlight = "green bold 22"; + }; + "color \"diff\"" = { + meta = 11; + frag = "magenta bold"; + commit = "yellow bold"; + old = "red bold"; + new = "green bold"; + whitespace = "red reverse"; + }; + }; + #signing.key = "GPG-KEY-ID"; + #signing.signByDefault = true; + }; +} -- cgit v1.3.1