Start using the stable pkg server by default

This commit is contained in:
David Heinemeier Hansson
2025-11-19 20:59:12 +01:00
parent 3e4421a37f
commit 8c4bf65727
3 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/bash
if [[ $1 == "edge" ]]; then
sudo sed -i 's|https://pkgs.omarchy.org/.*$arch|https://pkgs.omarchy.org/edge/$arch|' /etc/pacman.conf
else
sudo sed -i 's|https://pkgs.omarchy.org/.*$arch|https://pkgs.omarchy.org/stable/$arch|' /etc/pacman.conf
fi

View File

@@ -27,4 +27,4 @@ Include = /etc/pacman.d/mirrorlist
[omarchy] [omarchy]
SigLevel = Optional TrustAll SigLevel = Optional TrustAll
Server = https://pkgs.omarchy.org/$arch Server = https://pkgs.omarchy.org/stable/$arch

3
migrations/1763561396.sh Normal file
View File

@@ -0,0 +1,3 @@
echo "Switch to stable Omarchy Package Repository builds"
omarchy-refresh-pacman-opr-server