From 3b9323b1628d7afb91f3ed3d5befddc6538943f9 Mon Sep 17 00:00:00 2001 From: pompydev Date: Sat, 8 Mar 2025 20:01:18 +0900 Subject: [PATCH] add lazygit --- .vscode/settings.json | 1 + modules/home-manager/git.nix | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index d921410..3eb502b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -20,6 +20,7 @@ "justfile", "keymaps", "killall", + "lazygit", "lunarclient", "Meslo", "monero", diff --git a/modules/home-manager/git.nix b/modules/home-manager/git.nix index ba06b55..ed2ecea 100644 --- a/modules/home-manager/git.nix +++ b/modules/home-manager/git.nix @@ -1,6 +1,10 @@ -{ ... }: +{ pkgs, ... }: { + home.packages = with pkgs; [ + lazygit + ]; + programs.git = { enable = true; lfs.enable = true;