Telescope list files in decending order

I am trying to get a listing of my journal entries in descending order. I create a file for each day named with the date as follows:

2020-12-31.md
2021-01-01.md

2021-04-01.md
2021-04-02.md
2021-04-03.md

I am using the Telescopes builtin find_files as follows:

require('telescope.builtin').find_files({
    cwd = journal_dir;
})

This however lists the oldest files first. I want it to be in the opposite order. I have tried setting sorting_strategy to ascending. but that just moves the first selection to be at the top.

I looked into it and this is what I came up with (it requiers that rg is installed):

require'telescope.builtin'.find_files({
  find_command={'rg','--files','--sortr','path'}
})