diff options
Diffstat (limited to 'desktop/plasma')
-rw-r--r-- | desktop/plasma/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/desktop/plasma/default.nix b/desktop/plasma/default.nix new file mode 100644 index 0000000..4198029 --- /dev/null +++ b/desktop/plasma/default.nix @@ -0,0 +1,14 @@ +{pkgs, ...}: { + services.xserver = { + enable = true; + displayManager.sddm.enable = true; + desktopManager.plasma5 = { + enable = true; + excludePackages = with pkgs.libsForQt5; [ + kwallet + kwallet-pam + kwalletmanager + ]; + }; + }; +} |