From 5b381289cd3d392c19fecaa1699a71dd82655f7c Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Thu, 27 Feb 2025 08:10:23 +0530 Subject: [PATCH] feat: add jujutsu for git repos --- hosts/default/home/git.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/default/home/git.nix b/hosts/default/home/git.nix index 144bb4d..b15483b 100644 --- a/hosts/default/home/git.nix +++ b/hosts/default/home/git.nix @@ -1,6 +1,8 @@ { config, pkgs, ... }: -let githubHelper = "${pkgs.gh}/bin/gh auth git-credential"; in +let + githubHelper = "${pkgs.gh}/bin/gh auth git-credential"; +in { programs.git = { enable = true; @@ -21,5 +23,6 @@ let githubHelper = "${pkgs.gh}/bin/gh auth git-credential"; in home.packages = with pkgs; [ gh lazygit + jujutsu ]; }