readme: add dummy ssh key authorization

This commit is contained in:
lassulus 2018-05-03 21:52:15 +02:00
parent e4269ed29b
commit 082896b620
1 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,9 @@ let
boot.loader.systemd-boot.enable = true;
services.openssh.enable = true;
environment.systemPackages = [ pkgs.git ];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-rsa ADD_YOUR_OWN_PUBLIC_KEY_HERE user@localhost"
];
}
'');
}];