From fbb53380caf1e8373724c008ad52398999cd632d Mon Sep 17 00:00:00 2001 From: RGBCube Date: Thu, 11 Jan 2024 14:12:15 +0300 Subject: [PATCH] Use the id file for git SSH --- modules/git.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/git.nix b/modules/git.nix index 11379e7..7c19a61 100644 --- a/modules/git.nix +++ b/modules/git.nix @@ -63,6 +63,7 @@ homeConfiguration { init.defaultBranch = "master"; push.autoSetupRemote = true; } // lib.optionalAttrs ulib.isDesktop { + core.sshCommand = "ssh -i ~/.ssh/id"; url."ssh://git@github.com/".insteadOf = "https://github.com/"; commit.gpgSign = true;