summary refs log tree commit diff stats
path: root/services/opensshd.nix
blob: 4bd38fd23818c878917243609eca5141d3b98c0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, pkg, ... }: {
  services.openssh = {
    enable = true;
    passwordAuthentication = false;
    extraConfig = ''
      PrintMotd yes
    ''; # this could be done with pam
    hostKeys = [{
      comment = "key comment";
      path = "/srv/sshd/ssh_host_ed25519_key";
      rounds = 1000;
      type = "ed25519";
    }];
  };
  users.users.root.openssh.authorizedKeys.keys = [
    "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGBFuTNNn71Rhfnop2cdz3r/RhWWlCePnSBOhTBbu2ME soispha"
    "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG63gxw8JePmrC8Fni0pLV4TnPBhCPmSV9FYEdva+6s7 sils"
  ];
}