From f5388e798737d63eae4f88508f57fea0dd0b4192 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Wed, 15 May 2024 23:38:52 -0400 Subject: [PATCH] feat(git): per-folder author email --- home/juspay.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/home/juspay.nix b/home/juspay.nix index 8023079..f60c15b 100644 --- a/home/juspay.nix +++ b/home/juspay.nix @@ -23,5 +23,15 @@ }; }; }; + + programs.git = { + # Bitbucket git access and policies + includes = [{ + condition = "gitdir:~/juspay/**"; + contents = { + user.email = "sridhar.ratnakumar@juspay.in"; + }; + }]; + }; }