From 2965d29f6d2cff38c161b2226c71ceb043eaeefe Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Sat, 21 Sep 2024 16:26:07 -0400 Subject: [PATCH] Explicitly unset lightdm --- modules/hypr/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/hypr/default.nix b/modules/hypr/default.nix index f4040ed..5f6ff2a 100644 --- a/modules/hypr/default.nix +++ b/modules/hypr/default.nix @@ -14,8 +14,10 @@ windowManager.hypr = { enable = true; }; - displayManager.startx.enable = true; - lightdm.enable = lib.mkForce false; + displayManager = { + startx.enable = true; + lightdm.enable = lib.mkForce false; + }; }; };