diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2023-10-10 21:30:27 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2023-10-10 21:30:27 -0500 |
commit | 826460161145b46c2a473dd53d3ff81c07d0eb65 (patch) | |
tree | 4495d9c1861930b5a07420fc16793942d876a895 | |
parent | d42934a227c82ad444388796b813c84824ffdfac (diff) | |
download | image-826460161145b46c2a473dd53d3ff81c07d0eb65.tar.gz image-826460161145b46c2a473dd53d3ff81c07d0eb65.tar.bz2 image-826460161145b46c2a473dd53d3ff81c07d0eb65.tar.xz image-826460161145b46c2a473dd53d3ff81c07d0eb65.zip |
configs: Live environments: Use NetworkManager
This allows the user to have network access without poking at it, in
most scenarios.
Ref: adelie/horizon#361
-rw-r--r-- | configs/base/kde.installfile | 4 | ||||
-rw-r--r-- | configs/base/lxqt.installfile | 3 | ||||
-rw-r--r-- | configs/base/mate.installfile | 3 |
3 files changed, 7 insertions, 3 deletions
diff --git a/configs/base/kde.installfile b/configs/base/kde.installfile index e6b3758..ed2de98 100644 --- a/configs/base/kde.installfile +++ b/configs/base/kde.installfile @@ -1,10 +1,12 @@ # Install KDE and SDDM auto-login for it. -pkginstall livecd-support-kde +pkginstall livecd-support-kde networkmanager # Start X on boot, if possible. svcenable udev boot svcenable udev-trigger boot +svcenable bluetooth svcenable elogind +svcenable NetworkManager svcenable sddm svcenable wpa_supplicant diff --git a/configs/base/lxqt.installfile b/configs/base/lxqt.installfile index b433353..c75638a 100644 --- a/configs/base/lxqt.installfile +++ b/configs/base/lxqt.installfile @@ -1,10 +1,11 @@ # Install LXQt and SDDM auto-login for it. -pkginstall livecd-support-lxqt +pkginstall livecd-support-lxqt networkmanager # Start X on boot, if possible. svcenable udev boot svcenable udev-trigger boot svcenable elogind +svcenable NetworkManager svcenable sddm svcenable wpa_supplicant diff --git a/configs/base/mate.installfile b/configs/base/mate.installfile index b15f797..e0acf7b 100644 --- a/configs/base/mate.installfile +++ b/configs/base/mate.installfile @@ -1,10 +1,11 @@ # Install MATE and SDDM auto-login for it. -pkginstall livecd-support-mate +pkginstall livecd-support-mate networkmanager # Start X on boot, if possible. svcenable udev boot svcenable udev-trigger boot svcenable elogind +svcenable NetworkManager svcenable sddm svcenable wpa_supplicant |