From bafe695b96421dbda96c52712395a1e16be768aa Mon Sep 17 00:00:00 2001 From: Eclypsed Date: Sun, 19 Oct 2025 00:25:08 -0400 Subject: [PATCH] Added lazygit --- modules/home/git.nix | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/modules/home/git.nix b/modules/home/git.nix index 363ac4e..ab5f82b 100644 --- a/modules/home/git.nix +++ b/modules/home/git.nix @@ -3,16 +3,21 @@ ... }: { - programs.git = { - enable = true; - userName = "Eclypsed"; - userEmail = "Ec1ypsed@proton.me"; - extraConfig = { - init = { - defaultBranch = "main"; + home.packages = with pkgs; [ git-ignore ]; + + programs = { + git = { + enable = true; + userName = "Eclypsed"; + userEmail = "Ec1ypsed@proton.me"; + extraConfig = { + init = { + defaultBranch = "main"; + }; }; }; + lazygit = { + enable = true; + }; }; - - home.packages = with pkgs; [ git-ignore ]; }