Already did that.
So, to summarize for whoever finds this later:
- In
/etc/garuda/garuda-update/config
setSKIP_MIRRORLIST=1
to prevent automatic mirror update usingrate-mirrors
duringgaruda-update
. - Install
reflector
as it is not included in the base image (sudo pacman -S reflector
) - Define alias in
~/.config/fish/config.fish
(or overwrite one of the existing), e.g.
alias mirror-update 'sudo reflector --country Germany --latest 5 --age 1 --delay 0.25 --fastest 5 --protocol https --sort rate --save /etc/pacman.d/mirrorlist && bat /etc/pacman.d/mirrorlist'
(Adjust paramaters as needed) - Run the new alias (
mirror-update
) occasionally to update the mirrors.