From 3690c598bcf370269d610d9a7ca3cde41a3d3f25 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Wed, 4 Jun 2025 16:10:58 +0200 Subject: [PATCH] feat(shell): add lazygit setup. --- modules/cross-platform/home-manager/shell.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/cross-platform/home-manager/shell.nix b/modules/cross-platform/home-manager/shell.nix index 292ca3d..36b800b 100644 --- a/modules/cross-platform/home-manager/shell.nix +++ b/modules/cross-platform/home-manager/shell.nix @@ -113,5 +113,8 @@ # Install btop programs.btop.enable = true; + + # Install lazygit + programs.lazygit.enable = true; }; }