From d48c0cefb278b56e7fbef960bda9d18878b956fc Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sun, 14 Dec 2025 19:26:27 +0100 Subject: [PATCH] Fixed the SSH and SDDM issue --- modules/common/ssh.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/common/ssh.nix b/modules/common/ssh.nix index e658ba2..ca7fea4 100644 --- a/modules/common/ssh.nix +++ b/modules/common/ssh.nix @@ -2,5 +2,10 @@ # The OpenSSH agent programs.ssh = { startAgent = true; + extraConfig = '' + # Test if github.com works with ssh for cloning + Host github.com + IdentityFile ~/.ssh/github + ''; }; }