Allow ssh-rsa keys for now, as mobile app generates them

pull/2/head
Inex Code 2021-11-19 18:53:28 +03:00
parent 4a17a1e479
commit a71fd79588
1 changed files with 2 additions and 2 deletions

View File

@ -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