From d723c3bc4b7f40bb39896ff7f5e8e5e048573966 Mon Sep 17 00:00:00 2001 From: Paul-Henri Froidmont Date: Tue, 18 Jul 2023 21:12:57 +0200 Subject: [PATCH] Allow less secure Mac because of Nextcloud --- profiles/storage.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/profiles/storage.nix b/profiles/storage.nix index eb05ea9..604f7d6 100644 --- a/profiles/storage.nix +++ b/profiles/storage.nix @@ -127,6 +127,13 @@ }; users.groups.www-data = { gid = 991; }; + services.openssh.settings.Macs = [ + "hmac-sha2-512-etm@openssh.com" + "hmac-sha2-256-etm@openssh.com" + "umac-128-etm@openssh.com" + "hmac-sha2-256" # Needed for Nextcloud sshfs + ]; + users.users.steam = { isNormalUser = true; group = config.users.groups.steam.name;