From 1dcbd972b28e1ba6be17262e1dfa9c5ab0f58749 Mon Sep 17 00:00:00 2001 From: qpismont Date: Thu, 11 Dec 2025 20:05:37 +0100 Subject: [PATCH] Enhance Containerfile: Add DMS and Niri repositories for improved package management and support --- Containerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Containerfile b/Containerfile index bd46315..cbc2372 100644 --- a/Containerfile +++ b/Containerfile @@ -7,6 +7,12 @@ RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc \ #Ajout du dépot mullvad RUN curl -fsSL https://repository.mullvad.net/rpm/stable/mullvad.repo -o /etc/yum.repos.d/mullvad.repo +#Ajout du dépot avengemedia pour DMS (DankMaterialShell) +RUN dnf copr enable avengemedia/dms -y + +#Ajout du dépot Niri desktop +RUN dnf copr enable yalter/niri -y + #Install de gnome avec support hardware + Podman + Cups + Vulkan driver + Plymouth + dev tools + divers utilitaires RUN dnf install -y \ @gnome-desktop \ @@ -19,6 +25,8 @@ RUN dnf install -y \ vulkan-loader.i686 \ vulkan-tools \ cabextract \ + niri \ + dms \ glibc-langpack-fr \ langpacks-core-fr \ langpacks-fr \ @@ -109,6 +117,9 @@ RUN flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flath #Définir le target graphique par défaut RUN systemctl set-default graphical.target +#Ajout de niri comme dépendance de DMS +RUN systemctl --user add-wants niri.service dms + #Activation des services + Desactivation de bootc-update automatique RUN systemctl preset-all && \ systemctl enable gdm.service NetworkManager.service bluetooth.service podman.socket cups.service mullvad-daemon.service && \