From 2e8c2ddd3acf4ce0514fa642fa03f40c143fb224 Mon Sep 17 00:00:00 2001 From: mjallen18 Date: Wed, 8 Apr 2026 13:24:07 -0500 Subject: [PATCH] lol --- systems/x86_64-install-iso/graphical/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/systems/x86_64-install-iso/graphical/default.nix b/systems/x86_64-install-iso/graphical/default.nix index 519250f..204ac2f 100755 --- a/systems/x86_64-install-iso/graphical/default.nix +++ b/systems/x86_64-install-iso/graphical/default.nix @@ -7,11 +7,11 @@ }: { imports = [ - "${modulesPath}/installer/cd-dvd/installation-cd-graphical-gnome.nix" + "${modulesPath}/installer/cd-dvd/installation-cd-graphical-calamares-plasma6.nix" ]; ${namespace} = { - bootloader.lanzaboote.enable = true; + desktop.plasma.enable = true; hardware.disko = { enable = true; @@ -43,9 +43,10 @@ }; }; - specialisation.graphical.configuration = { - ${namespace}.desktop.plasma.enable = true; - }; + # The installer base module (installation-cd-graphical-calamares-plasma6.nix) + # sets plasma-login-manager for auto-login; override with SDDM from the plasma + # module disabled to avoid display-manager conflicts on the live ISO. + services.displayManager.sddm.enable = lib.mkForce false; boot = { kernelPackages = lib.mkForce pkgs.linuxPackages_latest;