diff --git a/morph/grid/testing/public-keys/users.nix b/morph/grid/testing/public-keys/users.nix
index a43c3359eb0782635005213585b1400a1138bf2d..23df3af2afe326eb99637975cae3f3e78a768433 100644
--- a/morph/grid/testing/public-keys/users.nix
+++ b/morph/grid/testing/public-keys/users.nix
@@ -1,9 +1,13 @@
 let
   jcalderone = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN4GenAY/YLGuf1WoMXyyVa3S9i4JLQ0AG+pt7nvcLlQ exarkun@baryon"];
   flo = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHx7wJQNqKn8jOC4AxySRL2UxidNp7uIK9ad3pMb1ifF flo@fs-la"];
+  andreas = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILkZzBoIPpoDSVis3HZId+lOI+3VTQfmz1uc4Yau8p/5 andreas@leastauthority.com"];
+  bdonneaux = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIRJNhnYYllhiNhTNQg+IcfbAudxxWzk/VF45E9G9dMn benoit@leastauthority.com"];
 in
   {
-    "root" = jcalderone ++ flo;
+    "root" = jcalderone ++ flo ++ andreas ++ bdonneaux;
     inherit jcalderone;
     inherit flo;
+    inherit andreas;
+    inherit bdonneaux;
   }