diff options
author | Alan Pearce | 2021-04-12 15:11:51 +0200 |
---|---|---|
committer | Alan Pearce | 2021-04-12 15:11:51 +0200 |
commit | f5785c7356f7538306397493b33c859f05886c35 (patch) | |
tree | 9ec358e8849d950741d9b4a804e3f6a8113e2215 /system/settings | |
parent | 88661823ed8563dafa4f8304e537f4ae5d9c2341 (diff) | |
download | nixfiles-f5785c7356f7538306397493b33c859f05886c35.tar.lz nixfiles-f5785c7356f7538306397493b33c859f05886c35.tar.zst nixfiles-f5785c7356f7538306397493b33c859f05886c35.zip |
prefect: enable SSH
Diffstat (limited to 'system/settings')
-rw-r--r-- | system/settings/configuration/user.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system/settings/configuration/user.nix b/system/settings/configuration/user.nix index e152a91b..5227f057 100644 --- a/system/settings/configuration/user.nix +++ b/system/settings/configuration/user.nix @@ -8,5 +8,8 @@ initialPassword = "password"; home = "/home/alan"; uid = 1000; + openssh.authorizedKeys.keys = [ + "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDRIsbc/xJGxEJGCCNT99kQhB1N84jPlPtrqSVF/OxbGenvk2HWbL/q/YpEUkG5eQrfV5jK8nXfNfjSsPDjF96A= alan@alanpearce.eu (sekey)" + ]; }; } |