summaryrefslogtreecommitdiff
path: root/hosts/common/desktop/plasma.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/desktop/plasma.nix')
-rw-r--r--hosts/common/desktop/plasma.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/hosts/common/desktop/plasma.nix b/hosts/common/desktop/plasma.nix
new file mode 100644
index 0000000..ddd3a28
--- /dev/null
+++ b/hosts/common/desktop/plasma.nix
@@ -0,0 +1,19 @@
+{pkgs, ...}: {
+ imports = [
+ ./.
+ ];
+
+ services.xserver = {
+ displayManager.sddm.enable = true;
+ desktopManager.plasma5 = {
+ enable = true;
+ excludePackages = with pkgs.libsForQt5; [
+ elisa
+ khelpcenter
+ oxygen
+ plasma-browser-integration
+ print-manager
+ ];
+ };
+ };
+}