From 5fafc45eb44d5dc451d6cbd7efeaa1de21876adf Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Sun, 28 Jan 2024 06:09:36 -0500 Subject: [PATCH] Added optional lazygit dependency for my config --- homeConfig/modules/git/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeConfig/modules/git/default.nix b/homeConfig/modules/git/default.nix index 9262274..b84beb3 100644 --- a/homeConfig/modules/git/default.nix +++ b/homeConfig/modules/git/default.nix @@ -19,6 +19,6 @@ in home.packages = with pkgs; [ git-crypt - ]; + ] ++ optional isBryan lazygit; }; }