From da6a7d5c69aa3e8b70755e88be0f44b642422114 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Thu, 7 Dec 2023 20:32:45 +0100 Subject: bump --- system-profiles/openssh/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'system-profiles/openssh') diff --git a/system-profiles/openssh/default.nix b/system-profiles/openssh/default.nix index 3e17e96c..098e2b25 100644 --- a/system-profiles/openssh/default.nix +++ b/system-profiles/openssh/default.nix @@ -66,7 +66,10 @@ in { services.openssh = mkIf cfg.enable { hostKeys = mkIf cfg.staticHostKeys (mkForce []); # done manually settings = { - inherit Ciphers Macs KexAlgorithms HostKeyAlgorithms CASignatureAlgorithms PubkeyAcceptedAlgorithms; + inherit Ciphers Macs KexAlgorithms; + HostKeyAlgorithms = concatStringsSep "," HostKeyAlgorithms; + PubkeyAcceptedAlgorithms = concatStringsSep "," PubkeyAcceptedAlgorithms; + CASignatureAlgorithms = concatStringsSep "," CASignatureAlgorithms; LogLevel = "VERBOSE"; RevokedKeys = toString ./ca/krl.bin; -- cgit v1.2.3