feat(jj): Pin to version supporting gerrit send
Gerrit send support is added in https://github.com/martinvonz/jj/pull/2845
We want it, so let's pull in the latest commit from that branch... it's
not perfect but from PR comments it seems stable enough
Change-Id: I9032158d455619374818989ffd37788d6f004684
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/778
Tested-by: Skyler Grey <minion@clicks.codes>
Reviewed-by: Samuel Shuert <coded@clicks.codes>
diff --git a/modules/home/git/default.nix b/modules/home/git/default.nix
index 61d3eb1..835a285 100644
--- a/modules/home/git/default.nix
+++ b/modules/home/git/default.nix
@@ -1,4 +1,6 @@
{
+ inputs,
+ system,
config,
lib,
pkgs,
@@ -98,7 +100,7 @@
home.packages =
(if config.chimera.git.gitReview.enable then [ pkgs.git-review ] else [ ])
++ (if config.chimera.git.stgit.enable then [ pkgs.stgit ] else [ ])
- ++ (if config.chimera.git.jj.enable then [ pkgs.jujutsu ] else [ ]);
+ ++ (if config.chimera.git.jj.enable then [ inputs.jujutsu.packages.${system}.jujutsu ] else [ ]);
programs.zsh.shellAliases =
if config.chimera.git.gitReview.enable then { "gr!" = "git review"; } else { };