NixFiles/systems/desktop/ssh.nix

12 lines
341 B
Nix
Raw Normal View History

2023-03-09 08:33:38 +00:00
{ config, username, ... }:
{
services.openssh = {
enable = true;
settings.permitRootLogin = "no";
settings.passwordAuthentication = false;
};
programs.ssh.hostKeyAlgorithms = [ "sk-ssh-ed25519@openssh.com" "ssh-ed25519" ];
users.users.${username}.openssh.authorizedKeys.keyFiles = [ ../maddie/ssh/id_ed25519_sk.pub ];
}