From 2748b3ba9cc230d2c88cb72f475d772cd9493701 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Sat, 11 May 2024 17:57:00 +0200 Subject: [PATCH] add name and mail to git --- hosts/server/home.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/server/home.nix b/hosts/server/home.nix index 3862a87..3335d4f 100644 --- a/hosts/server/home.nix +++ b/hosts/server/home.nix @@ -44,7 +44,11 @@ ]; modules = { - apps.git.enable = true; + apps.git = { + enable = true; + name = "Noa Aarts"; + email = "itepastra@gmail.com"; + }; apps.zsh.enable = true; };