1

feat: add jujutsu for git repos

This commit is contained in:
Himadri Bhattacharjee
2025-02-27 08:10:23 +05:30
parent bde5e3ddcf
commit 5b381289cd

View File

@@ -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
];
}