From 604891afb6b59f7359f0a03639d3e14b3fb8822c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 18 Feb 2025 12:24:39 +0000 Subject: [PATCH] Remove lightdm, enable startx --- nix/hosts/t490/services/dwm.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nix/hosts/t490/services/dwm.nix b/nix/hosts/t490/services/dwm.nix index e3adc80..422ce2d 100644 --- a/nix/hosts/t490/services/dwm.nix +++ b/nix/hosts/t490/services/dwm.nix @@ -25,7 +25,10 @@ with lib; ]; }; - xserver.windowManager.dwm.enable = true; + xserver = { + displayManager.startx.enable = true; + windowManager.dwm.enable = true; + }; }; systemd.user.services.dwm-status.serviceConfig.Restart = "on-failure";