summaryrefslogtreecommitdiff
path: root/hosts/server.nix
blob: 5c76b5d2946268fd878f97cd71bc2be189bf0b29 (plain)
1
2
3
4
5
6
7
8
{...}: {
  services.openssh = {
    enable = true;
    settings.PasswordAuthentication = false;
    ports = [5522];
  };
  users.users.root.openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+qXhCHNrSZmy4HEXaFn6xAp1w2GzQBMOfVdbR3E81Q cloudboxes"];
}