diff options
Diffstat (limited to 'sys/desktop/plasma')
-rw-r--r-- | sys/desktop/plasma/default.nix | 11 |
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 ]; - }; - }; } |