Fix buildUsers function

The key pair should be under the `.ssh` directory
This commit is contained in:
Gabriel Gonzalez 2019-07-26 18:28:21 -07:00 committed by GitHub
parent bd0d666e28
commit 2f4d291a5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -291,7 +291,7 @@ let possiblyCustomPrelude =
let buildUsers =
let makeUser = \(user : Text) ->
let home = "/home/${user}"
let privateKey = "${home}/id_ed25519"
let privateKey = "${home}/.ssh/id_ed25519"
let publicKey = "${privateKey}.pub"
in { home = home
, privateKey = privateKey