From 54fd5df1f8fbf7f3473eaf9f27de244aaa2cb8de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Thu, 20 Mar 2025 18:34:20 +0100 Subject: [PATCH] fix(jj): update signing config Some options have changed so set them so that signing works properly. --- modules/hm/users.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/hm/users.nix b/modules/hm/users.nix index dc36346..acbf9a8 100644 --- a/modules/hm/users.nix +++ b/modules/hm/users.nix @@ -22,8 +22,9 @@ in }; programs.jujutsu.settings = { user = lib.mkIf (cfg.defaultIdentity != null) { inherit (cfg.defaultIdentity) name email; }; + git.sign-on-push = lib.mkDefault hasKey; signing = lib.mkIf hasKey { - sign-all = true; + behaviour = "own"; backend = "gpg"; key = signingKey; };