From ff760806a4f6374aa85e61dbd376b4d3c06b82c1 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Thu, 21 Aug 2025 16:19:03 +0200 Subject: [PATCH] Remove cinnamon/lightdm and add ly as displayManager --- hosts/sol/configuration.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/hosts/sol/configuration.nix b/hosts/sol/configuration.nix index d20f3af..98f7b4f 100644 --- a/hosts/sol/configuration.nix +++ b/hosts/sol/configuration.nix @@ -30,11 +30,17 @@ # Enable the X11 windowing system. services.xserver.enable = true; - # Enable the Cinnamon Desktop Environment. - services.xserver.displayManager.lightdm.enable = true; - services.xserver.desktopManager.cinnamon.enable = true; + services.displayManager = { + ly.enable = true; + defaultSession = "stumpwm"; + }; services.xserver.windowManager.stumpwm.enable = true; + xdg.portal = { + enable = true; + extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; + }; + services.autorandr = { enable = true; profiles = { -- 2.47.2