From 6a9bbcb7992eafef9fcd6f9311664a2e911b26cd Mon Sep 17 00:00:00 2001 From: Tom Prince <tom.prince@private.storage> Date: Fri, 17 Sep 2021 16:54:27 -0600 Subject: [PATCH] Include an example ssh-key config that grabs your local key. --- morph/grid/local/public-keys/users.nix.example | 2 ++ 1 file changed, 2 insertions(+) diff --git a/morph/grid/local/public-keys/users.nix.example b/morph/grid/local/public-keys/users.nix.example index 412077c0..10a60be1 100644 --- a/morph/grid/local/public-keys/users.nix.example +++ b/morph/grid/local/public-keys/users.nix.example @@ -1,4 +1,6 @@ # Add your public key. Example: # let key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHx7wJQNqKn8jOC4AxySRL2UxidNp7uIK9ad3pMb1ifF flo@fs-la"; +# You can use the following to get key from the local machine. +# let key = builtins.readFile ~/.ssh/id_ed25519.pub; let key = undefined; in { "root" = key; "vagrant" = key; } -- GitLab