nix-config/modules/ssh/default.nix
2025-02-06 17:27:03 +01:00

7 lines
191 B
Nix

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