From d5cfcb075895406047bcc047222cf5798b2ac54c Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Sat, 23 Sep 2023 21:48:42 +0200 Subject: [PATCH] feat: add git user configuration --- modules/shell/git.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/shell/git.nix b/modules/shell/git.nix index ef0e87e..6e25541 100644 --- a/modules/shell/git.nix +++ b/modules/shell/git.nix @@ -6,6 +6,14 @@ programs = { git = { enable = true; + includes = [{ + contents = { + user = { + email = "rutherther@proton.me"; + name = "Rutherther"; + }; + }; + }]; }; }; } -- 2.48.1