From e499281933bebe6f33e95e668d6d62a7cd82ab57 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Sun, 16 Apr 2023 19:53:46 +0200 Subject: [PATCH] Switch to GDM as display manager --- nixos-config/configuration.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/nixos-config/configuration.nix b/nixos-config/configuration.nix index cf95345e..efefadd5 100644 --- a/nixos-config/configuration.nix +++ b/nixos-config/configuration.nix @@ -46,9 +46,14 @@ in # Enable the X11 windowing system. services.xserver = { enable = true; - displayManager.lightdm = { + displayManager.defaultSession = "hyprland"; + #displayManager.lightdm = { + # enable = true; + # greeters.gtk.enable = true; + #}; + displayManager.gdm = { enable = true; - greeters.gtk.enable = true; + wayland = true; }; };