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.
This commit is contained in:
2025-10-26 23:50:41 +00:00
parent 7689f83e8e
commit 7063282916

View File

@@ -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 = {