From 0dd8302c82d0cebd14f3c96075e5068c49c96b9b Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 10 Mar 2025 22:32:26 +0300 Subject: [PATCH] fix: don't use old host --- modules/common/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/common/git.nix b/modules/common/git.nix index aa8cf9d..7accb04 100644 --- a/modules/common/git.nix +++ b/modules/common/git.nix @@ -136,7 +136,7 @@ in { } <| mkIf config.isDesktop { core.sshCommand = "ssh -i ~/.ssh/id"; url."ssh://git@github.com/".insteadOf = "https://github.com/"; - url."ssh://forgejo@${gitDomain}:${toString self.cube.services.forgejo.settings.server.SSH_PORT}/".insteadOf = gitUrl; + url."ssh://forgejo@${gitDomain}:${toString self.best.services.forgejo.settings.server.SSH_PORT}/".insteadOf = gitUrl; commit.gpgSign = true; tag.gpgSign = true;