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