From 3ef6e6e3816ea43feae245cf36791088f8c83d81 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Thu, 13 Jun 2024 19:42:52 +0200 Subject: [PATCH] git: Add required configuration for kdesrc-build --- modules/home/shell/git/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/home/shell/git/default.nix b/modules/home/shell/git/default.nix index ad50961..b73308f 100644 --- a/modules/home/shell/git/default.nix +++ b/modules/home/shell/git/default.nix @@ -17,6 +17,11 @@ in userEmail = "florian.richer@protonmail.com"; # signing.signByDefault = true; + + extraConfig = { + url."https://invent.kde.org/".insteadOf = "kde:"; + url."ssh://git@invent.kde.org/".pushInsteadOf = "kde:"; + }; }; }; -} \ No newline at end of file +}