From a71fd79588622819cdfd8145688fa61629e1a849 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Fri, 19 Nov 2021 18:53:28 +0300 Subject: [PATCH] Allow ssh-rsa keys for now, as mobile app generates them --- configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 4b25967..e33f4e8 100644 --- a/configuration.nix +++ b/configuration.nix @@ -50,8 +50,8 @@ in openFirewall = false; }; programs.ssh = { - pubkeyAcceptedKeyTypes = [ "ssh-ed25519" ]; - hostKeyAlgorithms = [ "ssh-ed25519" ]; + pubkeyAcceptedKeyTypes = [ "ssh-ed25519" "ssh-rsa" ]; + hostKeyAlgorithms = [ "ssh-ed25519" "ssh-rsa" ]; }; environment.systemPackages = with pkgs; [ git