From ffc43bc0411c71f84fa1c7e52204c2b20e311429 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 15 Sep 2021 22:17:30 +0200 Subject: Adding linux -headers for nvidia-dkms This should address #585, as I don't see any nvidia-dkms other than when linux-zen and linux-lts is chosen, I chose to put the -headers logic in the same section. If this is needed for vanilla `linux` kernel as well, then move the logic one line up. --- profiles/xorg.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'profiles') diff --git a/profiles/xorg.py b/profiles/xorg.py index ce13664d..b8f33068 100644 --- a/profiles/xorg.py +++ b/profiles/xorg.py @@ -39,6 +39,8 @@ if __name__ == 'xorg': try: if "nvidia" in archinstall.storage.get("gfx_driver_packages", None): if "linux-zen" in archinstall.storage['installation_session'].base_packages or "linux-lts" in archinstall.storage['installation_session'].base_packages: + for kernel in archinstall.storage['installation_session'].kernels: + archinstall.storage['installation_session'].add_additional_packages(f"{kernel}-headers") # Fixes https://github.com/archlinux/archinstall/issues/585 archinstall.storage['installation_session'].add_additional_packages("dkms") # I've had kernel regen fail if it wasn't installed before nvidia-dkms archinstall.storage['installation_session'].add_additional_packages("xorg-server xorg-xinit nvidia-dkms") else: -- cgit v1.2.3-70-g09d2 From b4481506ff41ef057643be62f9f0526999f40891 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Fri, 17 Sep 2021 17:28:46 +0200 Subject: Added gvfs to fix "trash" in xfce4 https://wiki.archlinux.org/title/Xfce#Trash_icon_not_visible_and_trash_applet_does_not_work --- profiles/xfce4.py | 1 + 1 file changed, 1 insertion(+) (limited to 'profiles') diff --git a/profiles/xfce4.py b/profiles/xfce4.py index 8dbb04ec..ef0ddf2f 100644 --- a/profiles/xfce4.py +++ b/profiles/xfce4.py @@ -10,6 +10,7 @@ __packages__ = [ "pavucontrol", "lightdm", "lightdm-gtk-greeter", + "gvfs", ] -- cgit v1.2.3-70-g09d2 From a93225d1de74d871d57451caaf1dfab125aff0ec Mon Sep 17 00:00:00 2001 From: Falieri <90856747+falieri@users.noreply.github.com> Date: Sat, 18 Sep 2021 10:36:42 -0300 Subject: Update xfce4.py add network support to the xfce panel --- profiles/xfce4.py | 1 + 1 file changed, 1 insertion(+) (limited to 'profiles') diff --git a/profiles/xfce4.py b/profiles/xfce4.py index ef0ddf2f..89c04f7c 100644 --- a/profiles/xfce4.py +++ b/profiles/xfce4.py @@ -11,6 +11,7 @@ __packages__ = [ "lightdm", "lightdm-gtk-greeter", "gvfs", + "network-manager-applet", ] -- cgit v1.2.3-70-g09d2