How to set pacman to use only German mirrors?
Did this help?
https://wiki.archlinux.org/title/Mirrors
This might help, too, as CachyOS is using rate-mirrors
Hi,
You might use reflector
sudo cp -p /etc/xdg/reflector/reflector.conf /etc/xdg/reflector/reflector.conf.org;sudo vim /etc/xdg/reflector/reflector.conf
select the countries nearest to you or the ones that you trust. For example:
–country Germany
sudo cp -p /usr/lib/systemd/system/reflector.timer /usr/lib/systemd/system/reflector.timer.org;sudo vim /usr/lib/systemd/system/reflector.timer
OnCalendar=Mon,Wed,Fri
sudo systemctl enable reflector.service;sudo systemctl start reflector.service;sudo systemctl enable reflector.timer;sudo systemctl start reflector.timer;sudo systemctl status reflector.service;sudo systemctl status reflector.timer