From 2a30796827834150a72c5ab0e983db5b08a1efff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Sun, 4 May 2025 15:29:53 +0200 Subject: [PATCH] System Gen12 @ 2025-05-04-15:29:52 by jonas@monolith --- hosts/monolith/configuration.nix | 2 +- modules/desktop/dm/gdm.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/monolith/configuration.nix b/hosts/monolith/configuration.nix index 7e0240e..9e63a68 100644 --- a/hosts/monolith/configuration.nix +++ b/hosts/monolith/configuration.nix @@ -25,7 +25,7 @@ # hive modules hive.nix-scripts.enable = true; - hive.displayManager.name = "sddm"; + hive.displayManager.name = "gdm"; hive.plasma.enable = true; hive.kwallet.enable = true; hive.kwallet.forUsers = ["jonas"]; diff --git a/modules/desktop/dm/gdm.nix b/modules/desktop/dm/gdm.nix index 826c300..83e7813 100644 --- a/modules/desktop/dm/gdm.nix +++ b/modules/desktop/dm/gdm.nix @@ -8,7 +8,7 @@ in { config = lib.mkIf (cfg.name == "gdm") { services.xserver.displayManager.gdm = { enable = true; - wayland = cfg.wayland; + wayland = true; }; }; }