nixos/foundationdb: default to ssd storage engine

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2019-05-14 17:55:19 -05:00
parent 427f1e58a4
commit 2525b88c80
No known key found for this signature in database
GPG key ID: 25D2038DEB08021D

View file

@ -411,7 +411,7 @@ in
postStart = ''
if [ -e "${cfg.dataDir}/.first_startup" ]; then
fdbcli --exec "configure new single memory"
fdbcli --exec "configure new single ssd"
rm -f "${cfg.dataDir}/.first_startup";
fi
'';