fix(radicle): Disable signed pushes when enabled
Radicle can't handle signed pushes. Previously we were using the
if-asked setting by default, but this breaks radicle. Instead, we should
switch to the more common 'false' unless explicitly specified.
Change-Id: I7cd46ce638ad4cbb2e432be9f32dc423786199fb
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/841
Reviewed-by: Samuel Shuert <coded@clicks.codes>
Tested-by: Skyler Grey <minion@clicks.codes>
diff --git a/modules/home/git/default.nix b/modules/home/git/default.nix
index 1e30166..9d58ecd 100644
--- a/modules/home/git/default.nix
+++ b/modules/home/git/default.nix
@@ -29,7 +29,7 @@
push = lib.mkOption {
type = lib.types.bool;
description = "Enable gpg signing for pushes by when asked by the server";
- default = true;
+ default = !config.chimera.git.radicle.enable; # Radicle is not able to understand signed pushes, even with if-asked
};
};
};