diff --git a/morph/grid/production/grid.nix b/morph/grid/production/grid.nix index c65f6832079dbbfdc34247a28e46822c49ea7cc7..69a17602f0499acaa8b45adca5e45c8acc637110 100644 --- a/morph/grid/production/grid.nix +++ b/morph/grid/production/grid.nix @@ -6,7 +6,7 @@ import ../../lib/make-grid.nix { config = ./config.json; nodes = cfg: let - sshUsers = import ./secrets/production-users.nix; + sshUsers = import ./users.nix; in { # Here are the hosts that are in this morph network. This is sort of like # a server manifest. We try to keep as many of the specific details as diff --git a/morph/grid/production/users.nix b/morph/grid/production/users.nix new file mode 100644 index 0000000000000000000000000000000000000000..d3520076636b56c0b07055a135becaf6a77b798f --- /dev/null +++ b/morph/grid/production/users.nix @@ -0,0 +1,2 @@ +let key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGN4VQm3BIQKEFTw6aPrEwNuShf640N+Py2LOKznFCRT exarkun@bottom"; +in { "root" = key; jcalderone = key; }