From e48efc63293a79cc688bd443f38ae9994670f6f4 Mon Sep 17 00:00:00 2001 From: mjallen18 Date: Wed, 13 Mar 2024 15:56:08 -0500 Subject: [PATCH] mac git config --- hosts/mac/home.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/hosts/mac/home.nix b/hosts/mac/home.nix index 7aa3bb4..2f06731 100644 --- a/hosts/mac/home.nix +++ b/hosts/mac/home.nix @@ -29,6 +29,22 @@ htop.enable = true; }; + + programs.git = { + enable = true; + userName = "mjallen18"; + userEmail = "matt.l.jallen@gmail.com"; + aliases = { + co = "checkout"; + ci = "commit"; + cia = "commit --amend"; + s = "status"; + st = "status"; + b = "branch"; + # p = "pull --rebase"; + pu = "push"; + }; + }; # Manage bug in compilations - who uses manpages in 2024 anyways? :P manual.manpages.enable = false;