From e181c9225a16a55e7e9ac81c34cd1fd02b956117 Mon Sep 17 00:00:00 2001 From: Florian Sesser <florian@privatestorage.io> Date: Thu, 3 Jun 2021 05:32:54 +0000 Subject: [PATCH] Public keys can be secret too if you don't tell anyone about them --- morph/grid/local/{ => secrets}/users.nix | 2 +- morph/grid/production/users.nix | 2 -- morph/grid/testing/users.nix | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) rename morph/grid/local/{ => secrets}/users.nix (67%) delete mode 100644 morph/grid/production/users.nix delete mode 100644 morph/grid/testing/users.nix diff --git a/morph/grid/local/users.nix b/morph/grid/local/secrets/users.nix similarity index 67% rename from morph/grid/local/users.nix rename to morph/grid/local/secrets/users.nix index 120e986d..0f046981 100644 --- a/morph/grid/local/users.nix +++ b/morph/grid/local/secrets/users.nix @@ -1,2 +1,2 @@ let key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHx7wJQNqKn8jOC4AxySRL2UxidNp7uIK9ad3pMb1ifF flo@fs-la"; -in { "root" = key; "flo" = key; "vagrant" = key; } +in { "root" = key; "vagrant" = key; } diff --git a/morph/grid/production/users.nix b/morph/grid/production/users.nix deleted file mode 100644 index d3520076..00000000 --- a/morph/grid/production/users.nix +++ /dev/null @@ -1,2 +0,0 @@ -let key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGN4VQm3BIQKEFTw6aPrEwNuShf640N+Py2LOKznFCRT exarkun@bottom"; -in { "root" = key; jcalderone = key; } diff --git a/morph/grid/testing/users.nix b/morph/grid/testing/users.nix deleted file mode 100644 index d3520076..00000000 --- a/morph/grid/testing/users.nix +++ /dev/null @@ -1,2 +0,0 @@ -let key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGN4VQm3BIQKEFTw6aPrEwNuShf640N+Py2LOKznFCRT exarkun@bottom"; -in { "root" = key; jcalderone = key; } -- GitLab