plasma5 -> plasma6

for both the NixOS desktop env as well as home-manager packages.

ktouch had to be disabled due to being marked as broken, let's fix this
later
This commit is contained in:
Trolli Schmittlauch 2024-07-02 23:43:46 +02:00
parent f992a50964
commit 695b6a0d2e
3 changed files with 15 additions and 54 deletions

View file

@ -152,8 +152,13 @@ in
services.xserver.wacom.enable = true;
# Enable the KDE Desktop Environment.
services.displayManager.sddm.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
services.desktopManager.plasma6.enable = true;
# enable wayland for Chromium and Electron
environment.sessionVariables.NIXOS_OZONE_WL = "1";
# dconf required for several Gnome applications
programs.dconf.enable = true;