this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: add git-branchless manpages

+16 -9
+16 -9
modules/git.nix
··· 11 11 settings.aliases.co = "pr checkout"; 12 12 }; 13 13 14 - home.packages = with pkgs; [ 15 - git-absorb 16 - git-branchless 17 - git-gone 18 - git-revise 19 - gitAndTools.git-imerge 20 - gitAndTools.git-test 21 - gitAndTools.tig 22 - ]; 14 + home.packages = 15 + let 16 + git-branchless-man = pkgs.runCommand "git-branchless-man" { } '' 17 + mkdir -p $out/share/man 18 + ${pkgs.git-branchless}/bin/git-branchless install-man-pages $out/share/man 19 + ''; 20 + in 21 + [ 22 + pkgs.git-absorb 23 + pkgs.git-branchless 24 + git-branchless-man 25 + pkgs.git-gone 26 + pkgs.git-revise 27 + pkgs.gitAndTools.git-imerge 28 + pkgs.gitAndTools.tig 29 + ]; 23 30 24 31 programs.git = { 25 32 enable = true;