From 102f36eb1b88917d08c4fa657203ee1236245f7e Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sun, 16 Nov 2025 08:20:27 -0500 Subject: [PATCH] adding post quantum ssh KexAlgorithms --- common/global/ssh.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/global/ssh.nix b/common/global/ssh.nix index a0fb06e..35941c1 100644 --- a/common/global/ssh.nix +++ b/common/global/ssh.nix @@ -37,6 +37,8 @@ TcpKeepAlive = "no"; X11Forwarding = lib.mkDefault false; KexAlgorithms = [ + "sntrup761x25519-sha512@openssh.com" + "mlkem768x25519-sha256" "curve25519-sha256@libssh.org" "diffie-hellman-group-exchange-sha256" ];