Merge branch '8-global-package' into 'main'

Resolve "Global package that allows installing the whole system with only 1 package"

Closes #8

See merge request tipragot/tos!4
This commit is contained in:
Tipragot 2023-02-21 19:09:07 +01:00
commit e499929864
2 changed files with 10 additions and 1 deletions

View file

@ -96,7 +96,7 @@ install_system() {
echo "Server = https://git.tipragot.fr/tipragot/tos/-/raw/working-desktop/repository" >> /etc/pacman.conf # TEMP: For development
echo "Install arch linux..."
pacstrap -K /mnt tos-desktop-wm networkmanager "tos-drivers-${drivers}"
pacstrap -K /mnt tos-desktop "tos-drivers-${drivers}"
echo "Generate fstab..."
genfstab -U /mnt >> /mnt/etc/fstab

View file

@ -0,0 +1,9 @@
pkgname='tos-desktop'
pkgdesc='Tipragot OS for desktop'
arch=('any')
url='https://git.tipragot.fr/tipragot/tos'
license=('MIT')
pkgver='0.1.0'
pkgrel='1'
depends=('tos-desktop-wm' 'tos-dotfiles' 'networkmanager')