Files
nix-config-ryan4yin/modules/nixos/server/security.nix
2024-01-26 13:47:01 +08:00

8 lines
209 B
Nix

{username, ...}: {
# Public Keys that can be used to login to all my servers.
users.users.${username}.openssh.authorizedKeys.keys = [
# TODO update keys here
"ssh-ed25519 xxx ryan@romantic"
];
}