From ccc72027c52c609906ae96729d4a8ff34976a024 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 13 Mar 2025 16:23:46 +0100 Subject: [PATCH] tsuki/ssh: set Macs --- hosts/tsuki/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/tsuki/configuration.nix b/hosts/tsuki/configuration.nix index 9db8b1c..7d0bfea 100644 --- a/hosts/tsuki/configuration.nix +++ b/hosts/tsuki/configuration.nix @@ -58,6 +58,12 @@ }; services.openssh.enable = true; + services.openssh.settings.Macs = [ + "hmac-sha2-512-etm@openssh.com" + "hmac-sha2-256-etm@openssh.com" + "umac-128-etm@openssh.com" + "hmac-sha2-512" + ]; systemd.services."sshd@".serviceConfig = { Nice = -15;