summary refs log tree commit diff stats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sys/desktop/plasma/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/desktop/plasma/default.nix b/sys/desktop/plasma/default.nix
index 4198029..8acc0f6 100644
--- a/sys/desktop/plasma/default.nix
+++ b/sys/desktop/plasma/default.nix
@@ -1,14 +1,17 @@
 {pkgs, ...}: {
   services.xserver = {
     enable = true;
-    displayManager.sddm.enable = true;
+    displayManager = {
+      sddm.enable = true;
+      defaultSession = "plasmawayland";
+    };
     desktopManager.plasma5 = {
       enable = true;
-      excludePackages = with pkgs.libsForQt5; [
+    };
+  };
+  environment.plasma5.excludePackages = with pkgs.libsForQt5; [
         kwallet
         kwallet-pam
         kwalletmanager
       ];
-    };
-  };
 }