From 66baa8969faeaf281bfbe7af19195640d64dccae Mon Sep 17 00:00:00 2001 From: clerie Date: Tue, 28 Feb 2023 19:41:03 +0100 Subject: [PATCH] configuration/common: set git config globally --- configuration/common/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/configuration/common/default.nix b/configuration/common/default.nix index 92941e0..07cf46e 100644 --- a/configuration/common/default.nix +++ b/configuration/common/default.nix @@ -37,12 +37,20 @@ parted tmux colmena - git vim ]; programs.mtr.enable = true; + programs.git.enable = true; + + programs.git.config = { + user = { + name = "clerie"; + email = "git@clerie.de"; + }; + }; + services.openssh.enable = true; services.openssh.passwordAuthentication = false; services.openssh.kbdInteractiveAuthentication = false;