From 7063282916ec7b0e6465e11dd4620a6211fc7e1a Mon Sep 17 00:00:00 2001 From: Zephrynis Date: Sun, 26 Oct 2025 23:50:41 +0000 Subject: [PATCH] Exclude unwanted packages from Plasma and X server Added configuration to exclude 'konsole' and 'elisa' from Plasma 6 packages and 'xterm' from X server packages in the laptop host configuration. --- hosts/laptop/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 20a999a..1989fa2 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -23,6 +23,15 @@ services.xserver = { enable = true; }; + + # Exclude unwanted packages from Plasma + environment.plasma6.excludePackages = with pkgs.kdePackages; [ + konsole + elisa + ]; + + # Exclude xterm + services.xserver.excludePackages = [ pkgs.xterm ]; # Optional: Enable Wayland compositor # programs.hyprland = {