Upgrade jj

"Unable to exchange encryption" the old one tells me.
This commit is contained in:
Geoffrey Frogeye 2025-04-25 00:58:12 +02:00
parent d3119db300
commit 37520496e6
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
3 changed files with 6 additions and 7 deletions

View file

@ -11,7 +11,6 @@ in
config = lib.mkIf cfg.enable {
home.packages = [
pkgs.jjui
pkgs.lazyjj
(pkgs.writeShellApplication {
name = "git-sync";
text = (
@ -89,12 +88,8 @@ in
};
jujutsu = {
enable = true;
# Current version doesn't have the "none" signing backend
settings = {
git = {
auto-local-bookmark = true;
auto-local-branch = true;
};
git.auto-local-bookmark = true;
user = {
email = cfg.userEmail;
name = cfg.userName;
@ -106,7 +101,7 @@ in
merge-editor = "meld";
};
signing = lib.mkIf (!builtins.isNull cfg.signing) {
sign-all = true;
behaviour = "own";
backend = "gpg";
inherit (cfg.signing) key;
backends.gpg.allow-expired-keys = false;