From e0f3c025fb3988e766ed55ceb87d671796ce3614 Mon Sep 17 00:00:00 2001 From: twoneis Date: Mon, 1 Jul 2024 21:26:46 +0200 Subject: [PATCH] exclude packages from plasma --- modules/plasma/default.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/modules/plasma/default.nix b/modules/plasma/default.nix index e9c90e6..aba92d3 100644 --- a/modules/plasma/default.nix +++ b/modules/plasma/default.nix @@ -1,3 +1,18 @@ -{ lib, config, ... }: lib.mkIf (config.withPlasma) { +{ lib, config, pkgs, ... }: lib.mkIf (config.withPlasma) { services.desktopManager.plasma6.enable = true; + environment.plasma6.excludePackages = with pkgs; [ + plasma-browser-integration + konsole + ark + elisa + gwenview + okular + kate + khelpcenter + print-manager + dolphin + dolphin-plugins + spectacle + ffmpegthumbs + ]; }