nix-config/modules/server/ssh/default.nix
2025-02-04 20:08:19 +01:00

7 lines
191 B
Nix

{ ... }: {
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB5i6DgsV5wbkkEJzFbN624Sz0CKg9LGplfJUjeCpAdE"
];
}