From 708d60bcc6e7abd2b3a9392bccf8134a370b6b82 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 18 Oct 2021 14:45:23 +0200 Subject: [PATCH] home: git: rewrite gitlab URLs to use ssh --- home/git/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/git/default.nix b/home/git/default.nix index 6748bab..e9ccde8 100644 --- a/home/git/default.nix +++ b/home/git/default.nix @@ -133,6 +133,10 @@ in "git@github.com:" = { insteadOf = "https://github.com/"; }; + + "git@gitlab.com:" = { + insteadOf = "https://gitlab.com/"; + }; }; };