From fd2472bc0eff3a07799d30b7cce17f8167552af3 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Sat, 26 Oct 2024 01:55:26 -0400 Subject: [PATCH] feat(nix): configure git Signed-off-by: Lucas Sta Maria --- nix/hosts/framework/home.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nix/hosts/framework/home.nix b/nix/hosts/framework/home.nix index bd510b3..ecd68b0 100644 --- a/nix/hosts/framework/home.nix +++ b/nix/hosts/framework/home.nix @@ -197,6 +197,21 @@ }; }; + programs.git = { + enable = true; + userName = "Lucas Sta Maria"; + userEmail = "lucas@priime.dev"; + signing = { + key = "2EAF5BA156A36810B057BF61F07FB16A826E3B47"; + signByDefault = true; + }; + extraConfig = { + pull.rebase = true; + github.user = "priime0"; + credential.helper = "store"; + }; + }; + programs.gh = { enable = true; settings.editor = "emacsclient";