From 65ad50d9cb1b5b7ea4a5297654308b236ac1dd06 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Mon, 14 Oct 2024 11:14:45 -0700 Subject: [PATCH] Revert "chore: Kill X11 session for good" This reverts commit b7ee250370c2fe7e4f6283357d2326237e6eb5e6. --- Containerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Containerfile b/Containerfile index 5522515b..fd03797b 100644 --- a/Containerfile +++ b/Containerfile @@ -951,11 +951,16 @@ ARG VERSION_PRETTY="${VERSION_PRETTY}" COPY system_files/nvidia/shared system_files/nvidia/${BASE_IMAGE_NAME} / # Remove everything that doesn't work well with NVIDIA +# Install X11 session (Remove me for Fedora 41) RUN --mount=type=cache,dst=/var/cache/rpm-ostree \ rpm-ostree override remove \ rocm-hip \ rocm-opencl \ rocm-clinfo && \ + if [[ "${BASE_IMAGE_NAME}" == "kinoite" && "$FEDORA_MAJOR_VERSION" -eq "40" ]]; then \ + rpm-ostree install \ + plasma-workspace-x11 \ + ; fi && \ /usr/libexec/containerbuild/cleanup.sh && \ ostree container commit