summary refs log blame commit diff stats
path: root/system/services/openssh/default.nix
blob: 8b28cbd35928bf2faa85c0537616484664939f9b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
        
                      
                                            
                
                                                    


                         
    
 
{...}: {
  services.openssh = {
    enable = true;
    settings.PasswordAuthentication = false;
    hostKeys = [
      {
        path = "/var/lib/sshd/ssh_host_ed25519_key";
        rounds = 1000;
        type = "ed25519";
      }
    ];
  };
}