mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Change package order
This commit is contained in:
parent
86317465ce
commit
4623175ea5
|
@ -1,8 +1,9 @@
|
|||
pacman:
|
||||
- vim
|
||||
|
||||
git:
|
||||
- https://aur.archlinux.org/yay-git.git
|
||||
|
||||
aur:
|
||||
- spotify
|
||||
|
||||
git:
|
||||
- https://aur.archlinux.org/yay-git.git
|
||||
|
|
|
@ -15,10 +15,10 @@ def obtain_packages() -> t.List[Package]:
|
|||
git_packages = yaml_file["git"]
|
||||
|
||||
packages = []
|
||||
for package in git_packages:
|
||||
packages.append(Package(package, git=True))
|
||||
for package in pacman_packages:
|
||||
packages.append(Package(package))
|
||||
for package in git_packages:
|
||||
packages.append(Package(package, git=True))
|
||||
for package in aur_packages:
|
||||
packages.append(Package(package, aur=True))
|
||||
|
||||
|
|
Loading…
Reference in a new issue