From d6eff86646fe3b0105fd220e436f77dd67668dfd Mon Sep 17 00:00:00 2001 From: Toast Date: Wed, 28 Jun 2023 14:50:12 +0200 Subject: [PATCH] Plasma: set default session to plasma wayland --- roles/kde/plasma.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/roles/kde/plasma.nix b/roles/kde/plasma.nix index 1445083..e2b8eb8 100644 --- a/roles/kde/plasma.nix +++ b/roles/kde/plasma.nix @@ -19,8 +19,12 @@ let in { - # Enable the Plasma 5 Desktop Environment. - services.xserver.desktopManager.plasma5.enable = true; + services.xserver = { + # Enable the Plasma 5 Desktop Environment + desktopManager.plasma5.enable = true; + displayManager.defaultSession = "plasmawayland"; + }; + # GTK apps need dconf to grab the correct theme on Wayland programs.dconf.enable = true;